lyx_mirror/src/frontends/controllers/ControlShowFile.h
Angus Leeming 0f9678630c Remove all unnecessary #includes from header files.
Add them as appropriate to .C files.
Rename Voss as Vo�, Juergen as J�rgen and Spitzmueller as Spitzm�ller.
Happy compiling.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7701 a592a061-630c-0410-9148-cb99ea01b6c8
2003-09-07 01:45:40 +00:00

42 lines
783 B
C++

// -*- C++ -*-
/**
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \file ControlShowFile.h
*
* \author Herbert Voß
*
* Full author contact details are available in file CREDITS.
*/
#ifndef CONTROLSHOWFILE_H
#define CONTROLSHOWFILE_H
#include "Dialog.h"
/** A controller for the ShowFile dialog. */
class ControlShowFile : public Dialog::Controller {
public:
///
ControlShowFile(Dialog &);
///
virtual bool initialiseParams(string const & data);
///
virtual void clearParams();
///
virtual void dispatchParams() {}
///
virtual bool isBufferDependent() const { return false; }
///
string getFileContents();
///
string getFileName();
private:
///
string filename_;
};
#endif // CONTROLSHOWFILE_H