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.
24 lines
347 B
C++
24 lines
347 B
C++
#pragma once
|
|
|
|
#include <ActiveQt/QAxWidget>
|
|
|
|
#include "iSplashObj.h"
|
|
|
|
class I_GUI_SPLASH_EXPORT iSplashObjSwf : public QAxWidget, public iSplashObj
|
|
{
|
|
//Q_OBJECT// Must deleted
|
|
|
|
public:
|
|
explicit iSplashObjSwf();
|
|
~iSplashObjSwf();
|
|
|
|
// 开启或关闭
|
|
virtual void start();
|
|
virtual void finish();
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|