]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlVCLog.h
prefs/tabular MVC work
[lyx.git] / src / frontends / controllers / ControlVCLog.h
1 // -*- C++ -*-
2 /**
3  * \file ControlVCLog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef CONTROLVCLOG_H
14 #define CONTROLVCLOG_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ControlDialog_impl.h"
21
22 #include "LString.h"
23
24 /**
25  * A controller for the Version Control log viewer.
26  */
27 class ControlVCLog : public ControlDialogBD {
28 public:
29         ///
30         ControlVCLog(LyXView &, Dialogs &);
31         /// put the log file into the ostream
32         void getVCLogFile(std::ostream & ss) const;
33         /// get the filename of the buffer
34         string const getBufferFileName() const;
35 private:
36         ///
37         virtual void apply() {}
38 };
39
40 #endif // CONTROLVCLOG_H