18 lines
285 B
C
18 lines
285 B
C
|
|
#ifndef MENULOCATION_H
|
|||
|
|
#define MENULOCATION_H
|
|||
|
|
|
|||
|
|
#include "plugin_support/MenuPath.h"
|
|||
|
|
|
|||
|
|
class MenuLocation {
|
|||
|
|
public:
|
|||
|
|
MenuLocation();
|
|||
|
|
MenuLocation(MenuPath path, int position = -1);
|
|||
|
|
|
|||
|
|
bool isEmpty() const;
|
|||
|
|
private:
|
|||
|
|
MenuPath m_path;
|
|||
|
|
int m_position = -1;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // MENULOCATION_H
|