18 lines
385 B
C++
18 lines
385 B
C++
#ifndef DORICASSETJSLOADER_H
|
|
#define DORICASSETJSLOADER_H
|
|
|
|
#include "DoricExport.h"
|
|
|
|
#include "DoricInterfaceLoader.h"
|
|
|
|
class DORIC_EXPORT DoricAssetJSLoader : public DoricInterfaceLoader {
|
|
public:
|
|
DoricAssetJSLoader();
|
|
|
|
virtual bool filter(QString source) override;
|
|
|
|
virtual std::shared_ptr<DoricAsyncResult> request(QString source) override;
|
|
};
|
|
|
|
#endif // DORICASSETJSLOADER_H
|