mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
526 B
28 lines
526 B
/*juCi++ model header file*/ |
|
#ifndef MODEL_H |
|
#define MODEL_H |
|
|
|
#include "gtkmm.h" |
|
|
|
/* -------------------------- HOW TO -------------------------- */ |
|
/* Model classes under Model if possible */ |
|
/* ------------------ Remove these comments ------------------- */ |
|
|
|
class Model { |
|
public: |
|
class Menu { |
|
public: |
|
Menu(); |
|
|
|
virtual~Menu(); |
|
|
|
std::string ui_string() { |
|
return ui_string_; |
|
}; |
|
private: |
|
std::string ui_string_; |
|
}; |
|
|
|
}; |
|
|
|
#endif //MODEL_H
|