]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormLog.h
change some __GNUG_ to __GNUG__
[lyx.git] / src / frontends / xforms / FormLog.h
1 // -*- C++ -*-
2 /*
3  * FormLog.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 FORMLOG_H
11 #define FORMLOG_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBrowser.h"
18
19 class ControlLog;
20
21 /**
22  * This class provides an XForms implementation of the LaTeX log dialog
23  * for viewing the last LaTeX log file.
24  */
25 class FormLog : public FormCB<ControlLog, FormBrowser> {
26 public:
27         ///
28         FormLog(ControlLog &);
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 // FORMLOG_H