You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kmyfirewall/kmyfirewall/core/kmfappstate.h

38 lines
592 B

//
// 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 TDE_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