]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlVCLog.h
include sys/time.h
[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
17 #include "ControlDialog_impl.h"
18
19 #include "LString.h"
20
21 /**
22  * A controller for the Version Control log viewer.
23  */
24 class ControlVCLog : public ControlDialogBD {
25 public:
26         ///
27         ControlVCLog(LyXView &, Dialogs &);
28         /// put the log file into the ostream
29         void getVCLogFile(std::ostream & ss) const;
30         /// get the filename of the buffer
31         string const getBufferFileName() const;
32 private:
33         ///
34         virtual void apply() {}
35 };
36
37 #endif // CONTROLVCLOG_H