lyx_mirror/src/frontends/GUIRunTime.h
Lars Gullik Bjønnes 0ed115d608 have a real runTime method for all frontends
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@975 a592a061-630c-0410-9148-cb99ea01b6c8
2000-08-16 23:48:48 +00:00

44 lines
759 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
* @author Jürgen Vigna
*
* ====================================================== */
#ifndef GUIRUNTIME_H
#define GUIRUNTIME_H
#ifdef __GNUG__
#pragma interface
#endif
class LyXView;
/** The LyX GUI independent guiruntime class
The GUI interface is implemented in the corresponding GUIRunTime_pimpl class.
*/
class GUIRunTime {
public:
///
GUIRunTime();
///
~GUIRunTime();
///
void processEvents();
///
void runTime();
struct Pimpl;
friend struct Pimpl;
private:
///
Pimpl * pimpl_;
};
#endif