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.
28 lines
380 B
28 lines
380 B
//
|
|
// C++ Interface: app
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Christian Hubinger <e9806056@student.tuwien.ac.at>, (C) 2005
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include <tdeapplication.h>
|
|
|
|
/**
|
|
@author Christian Hubinger
|
|
*/
|
|
class MainApp : public TDEApplication {
|
|
public:
|
|
MainApp();
|
|
~MainApp();
|
|
|
|
};
|
|
|
|
#endif
|