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.
kshowmail/kshowmail/uniqueapp.h

66 lines
1.7 KiB

/***************************************************************************
uniqueapp.h - description
-------------------
begin : Mon Nov 19 2001
copyright : (C) 2001 by Eggert Ehmke
email : eggert.ehmke@berlin.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef UNIQUEAPP_H
#define UNIQUEAPP_H
//KDE-Header
#include <twin.h>
#include <tdecmdlineargs.h>
#include <kuniqueapplication.h>
//KShowMail-Header
#include "kshowmail.h"
#include "constants.h"
using namespace Constants;
/**
* @short Creates a unique instance of kshowmail
* @author Eggert Ehmke
*/
class UniqueApp : public KUniqueApplication {
public:
/**
* Constructor
*/
UniqueApp();
/**
* Destructor
*/
~UniqueApp();
/**
* overloaded method of KUniqueApplication. Creates a new instance of kshowmail.
*/
virtual int newInstance ();
private:
/**
* the kshowmail instance
*/
KShowMailApp* m_pApp;
};
#endif