]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormVCLog.h
Merging BRANCH_MVC back into HEAD.
[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 #include "FormBaseDeprecated.h"
13 #include "FormBrowser.h"
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 class LyXView;
20 class Dialogs;
21
22 /**
23  * This class provides an XForms implementation of the Version Control
24  * log viewer
25  */
26 class FormVCLog : public FormBrowser {
27 public:
28         ///
29         FormVCLog(LyXView *, Dialogs *);
30 private:
31         /// Update the dialog.
32         virtual void update();
33 };
34
35 #endif