lyx_mirror/src/frontends/Menubar.C
Lars Gullik Bjønnes 17674b902d up the LYX_FORMAT
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@986 a592a061-630c-0410-9148-cb99ea01b6c8
2000-08-24 23:10:28 +00:00

54 lines
810 B
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
* This file is Copyright 2000 Jean-Marc Lasgouttes
*
* ====================================================== */
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "Menubar.h"
#include "Menubar_pimpl.h"
using std::endl;
Menubar::Menubar(LyXView * o, MenuBackend const & md)
{
pimpl_ = new Pimpl(o, md);
}
Menubar::~Menubar()
{
delete pimpl_;
}
void Menubar::set(string const & name)
{
pimpl_->set(name);
}
void Menubar::openByName(string const & name)
{
pimpl_->openByName(name);
}
void Menubar::update()
{
pimpl_->update();
}