11 lines
164 B
C++
11 lines
164 B
C++
#ifndef LMENUSECTION_H
|
|
#define LMENUSECTION_H
|
|
|
|
/** Logical grouping within a menu
|
|
*/
|
|
class LMenuSection {
|
|
public:
|
|
LMenuSection();
|
|
};
|
|
|
|
#endif // LMENUSECTION_H
|