You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
579 B
C++
27 lines
579 B
C++
#ifndef QTADPOLECALLBACK_H
|
|
#define QTADPOLECALLBACK_H
|
|
|
|
#include "iCoreCtrl.h"
|
|
#include "QTadpoleMain.h"
|
|
|
|
class QTadpoleCallback : public IGuiCallback
|
|
{
|
|
public:
|
|
QTadpoleCallback(const QString& dllPath);
|
|
virtual ~QTadpoleCallback();
|
|
public:
|
|
//interfaces call back by tpCoreCtrl
|
|
//virtual void IUpdateShow(const QString& skey);
|
|
//virtual void IAddWindows(const QString& sWinName, const QString& sShowId) = 0;
|
|
protected:
|
|
void InitCoreCtrl();
|
|
void FreeCoreCtrl();
|
|
protected:
|
|
QTadpoleMain m_tpMain;
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
#endif // QTadpoleCallback_H
|