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