]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormVCLog.h
Remove redundant files.
[lyx.git] / src / frontends / xforms / FormVCLog.h
1 // -*- C++ -*-
2 /**
3  * \file FormVCLog.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  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMVCLOG_H
13 #define FORMVCLOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBrowser.h"
20
21 class ControlVCLog;
22
23 /**
24  * This class provides an XForms implementation of the Version Control
25  * log viewer
26  */
27 class FormVCLog : public FormCB<ControlVCLog, FormBrowser> {
28 public:
29         ///
30         FormVCLog();
31
32         // Functions accessible to the Controller.
33
34         /// Set the Params variable for the Controller.
35         virtual void apply() {}
36         /// Update dialog before/whilst showing it.
37         virtual void update();
38 };
39
40 #endif // FORMVCLOG_H