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.
39 lines
577 B
39 lines
577 B
15 years ago
|
/*
|
||
|
* Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef _KDEDCOPTEST_H_
|
||
|
#define _KDEDCOPTEST_H_
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
12 years ago
|
#include <tdemainwindow.h>
|
||
15 years ago
|
|
||
|
#include "mainclass.h"
|
||
|
|
||
|
/**
|
||
|
* @short Application Main Window
|
||
|
* @author Julian Rockey <kde@jrockey.com>
|
||
|
* @version 0.1
|
||
|
*/
|
||
12 years ago
|
class KDEDcopTest : public TDEMainWindow
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
/**
|
||
|
* Default Constructor
|
||
|
*/
|
||
|
KDEDcopTest();
|
||
|
|
||
|
/**
|
||
|
* Default Destructor
|
||
|
*/
|
||
|
virtual ~KDEDcopTest();
|
||
|
private:
|
||
|
MainClass *m_mainClass;
|
||
|
};
|
||
|
|
||
|
#endif // _KDEDCOPTEST_H_
|