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