#ifndef MENUPATH_H #define MENUPATH_H #include #include class MenuPath { public: MenuPath(); MenuPath(QString menu_path); private: QString m_menuPath; /// Contains the elements of the path, in general /// more then 3 levels is a bad idea but small_vector can grow when required. // boost::container::small_vector m_menuItemSeperators; }; #endif // MENUPATH_H