]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormVCLog.h
use exclicit temp var
[lyx.git] / src / frontends / xforms / FormVCLog.h
1 // -*- C++ -*-
2 /*
3  * FormVCLog.h
4  *
5  * (C) 2001 LyX Team
6  * John Levon, moz@compsoc.man.ac.uk
7  */
8
9 #ifndef FORMVCLOG_H
10 #define FORMVCLOG_H
11
12 #ifdef __GNUG__
13 #pragma interface
14 #endif
15
16 #include "FormBrowser.h"
17
18 class ControlVCLog;
19
20 /**
21  * This class provides an XForms implementation of the Version Control
22  * log viewer
23  */
24 class FormVCLog : public FormCB<ControlVCLog, FormBrowser> {
25 public:
26         ///
27         FormVCLog(ControlVCLog &);
28
29         // Functions accessible to the Controller.
30
31         /// Set the Params variable for the Controller.
32         virtual void apply() {}
33         /// Update dialog before/whilst showing it.
34         virtual void update();
35 };
36
37 #endif // FORMVCLOG_H