lyx_mirror/src/frontends/qt2/QERT.h
Lars Gullik Bjønnes f7ba7c8e9f ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 21:21:28 +00:00

36 lines
522 B
C++

// -*- C++ -*-
/**
* \file QERT.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon <moz@compsoc.man.ac.uk>
*/
#ifndef QERT_H
#define QERT_H
#include "Qt2Base.h"
class ControlERT;
class QERTDialog;
class QERT :
public Qt2CB<ControlERT, Qt2DB<QERTDialog> >
{
friend class QERTDialog;
public:
QERT(ControlERT &);
private:
/// Apply changes
virtual void apply();
/// update
virtual void update_contents();
/// build the dialog
virtual void build_dialog();
};
#endif // QERT_H