19 lines
232 B
C
19 lines
232 B
C
|
|
#ifndef MENUPATH_H
|
|||
|
|
#define MENUPATH_H
|
|||
|
|
|
|||
|
|
#include <QString>
|
|||
|
|
#include <boost/container/small_vector.hpp>
|
|||
|
|
|
|||
|
|
|
|||
|
|
class MenuPath {
|
|||
|
|
public:
|
|||
|
|
MenuPath();
|
|||
|
|
MenuPath(QString menu_path);
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
QString m_menuPath;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif // MENUPATH_H
|