11 lines
163 B
C++
11 lines
163 B
C++
#ifndef LMENUBAR_H
|
|
#define LMENUBAR_H
|
|
|
|
/** Represents the main menubar. Linked to a QMenuBar
|
|
*/
|
|
class LMenuBar {
|
|
public:
|
|
LMenuBar();
|
|
};
|
|
|
|
#endif // LMENUBAR_H
|