lyx_mirror/src/frontends/qt2/FormCopyright.h
Angus Leeming 31b56dac80 In for a penny, in for a pound. Consistent use of // -*- C++ -*-
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2123 a592a061-630c-0410-9148-cb99ea01b6c8
2001-06-14 08:20:41 +00:00

49 lines
1.5 KiB
C++

// -*- C++ -*-
/***************************************************************************
formcopyright.h - description
-------------------
begin : Thu Feb 3 2000
copyright : (C) 2000 by Jürgen Vigna, 2001 by Kalle Dalheimer
email : kalle@klaralvdalens-datakonsult.se
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef FORMCOPYRIGHT_H
#define FORMCOPYRIGHT_H
#include "Qt2Base.h"
#include "boost/utility.hpp"
class Dialogs;
class LyXView;
class FormCopyrightDialogImpl;
class ControlCopyright;
/**
@author Kalle Dalheimer
*/
class FormCopyright
: public Qt2CB<ControlCopyright, Qt2DB<FormCopyrightDialogImpl> >
{
public:
FormCopyright( ControlCopyright& );
private:
/// not needed
virtual void apply() {}
/// not needed
virtual void update() {}
// build the dialog
virtual void build();
};
#endif