mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 15:05:56 +00:00
35 lines
552 B
C++
35 lines
552 B
C++
|
/* This file is part of
|
|||
|
* ======================================================
|
|||
|
*
|
|||
|
* LyX, The Document Processor
|
|||
|
*
|
|||
|
* Copyright (C) 2000 The LyX Team.
|
|||
|
*
|
|||
|
* @author J<EFBFBD>rgen Vigna
|
|||
|
*
|
|||
|
*======================================================*/
|
|||
|
|
|||
|
#include <config.h>
|
|||
|
|
|||
|
#ifdef __GNUG__
|
|||
|
#pragma implementation
|
|||
|
#endif
|
|||
|
|
|||
|
#include "GUIRunTime_pimpl.h"
|
|||
|
#include <kapp.h>
|
|||
|
|
|||
|
using std::endl;
|
|||
|
|
|||
|
GUIRunTime::Pimpl::Pimpl()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
GUIRunTime::Pimpl::~Pimpl()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
void GUIRunTime::Pimpl::processEvents()
|
|||
|
{
|
|||
|
kapp->processEvents();
|
|||
|
}
|