]> git.lyx.org Git - features.git/blob - src/frontends/GUIRunTime.C
fixed the fix for FormDocument's policy
[features.git] / src / frontends / GUIRunTime.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2000 The LyX Team.
7  *
8  *           @author Jürgen Vigna
9  *
10  * ====================================================== */
11
12
13 #include <config.h>
14
15 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include "GUIRunTime.h"
20 #include "GUIRunTime_pimpl.h"
21
22 GUIRunTime::GUIRunTime()
23 {
24         pimpl_ = new Pimpl;
25 }
26
27
28 GUIRunTime::~GUIRunTime()
29 {
30         delete pimpl_;
31 }
32
33
34 void GUIRunTime::processEvents()
35 {
36         pimpl_->processEvents();
37 }
38
39
40 void GUIRunTime::runTime() 
41 {
42         pimpl_->runTime();
43 }