lyx_mirror/src/insets/mailinset.h
Angus Leeming cda53633ff Hold on to your hats.
Qt users should autogen.sh
Gnome users --- you're on your own ;-)
Happy recompiling.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6253 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-25 14:51:38 +00:00

44 lines
655 B
C++

// -*- C++ -*-
/**
* \file mailinset.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS
*/
#ifndef MAILINSET_H
#define MAILINSET_H
#include "LString.h"
class Inset;
class MailInset {
public:
///
virtual ~MailInset() {};
///
void showDialog() const;
///
void updateDialog() const;
///
void hideDialog() const;
///
virtual string const inset2string() const = 0;
protected:
///
virtual Inset & inset() const = 0;
///
virtual string const & name() const = 0;
};
#endif // MAILINSET_H