pgLab/pglab/plugin_support/MenuPath.h

18 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