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.
|
#ifndef MAINVIEWIMP_H
|
|
#define MAINVIEWIMP_H
|
|
|
|
#include "mainview.h"
|
|
|
|
class MainViewImp : public MainView
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
MainViewImp(TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
|
|
~MainViewImp();
|
|
|
|
public slots:
|
|
virtual void slotHelloButtonClicked();
|
|
};
|
|
|
|
#endif
|
|
|