]> git.lyx.org Git - lyx.git/blob - src/frontends/Menubar.C
Really dull and boring header shit
[lyx.git] / src / frontends / Menubar.C
1 /**
2  * \file Menubar.C
3  * Read the file COPYING
4  *
5  * \author Jean-Marc Lasgouttes
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "Menubar.h"
17 #include "MenuBackend.h"
18 #include "Menubar_pimpl.h"
19
20 Menubar::Menubar(LyXView * o, MenuBackend const & md)
21 {
22         pimpl_ = new Pimpl(o, md);
23 }
24
25
26 Menubar::~Menubar()
27 {
28         delete pimpl_;
29 }
30
31
32 void Menubar::openByName(string const & name)
33 {
34         pimpl_->openByName(name);
35 }
36
37
38 void Menubar::update()
39 {
40         pimpl_->update();
41 }