14 lines
169 B
C
14 lines
169 B
C
|
|
#ifndef LMENU_H
|
|||
|
|
#define LMENU_H
|
|||
|
|
|
|||
|
|
/** Represents a menu wraps QMenu to give it more dynamic functionality
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
class LMenu
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
LMenu();
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // LMENU_H
|