blob: fb685c8bf7d74e2756a017da42d61d0b9745f111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
//
// C++ Interface: %{MODULE}
//
// Description:
//
//
// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR}
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFAPPSTATE_H
#define KMFAPPSTATE_H
#include <kdemacros.h>
namespace KMF {
/**
@author Christian Hubinger
*/
class KDE_EXPORT KMFAppState{
public:
KMFAppState();
~KMFAppState();
static void setUpAndRunning( bool on );
// static void setHasOpenDoc( bool on );
static bool upAndRunning();
// static bool hasOpenDoc();
private:
static bool _upAndRunning;
static bool _hasOpenDoc;
};
}
#endif
|