This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/Doric.h

16 lines
272 B
C
Raw Normal View History

2021-05-17 16:18:44 +08:00
#ifndef DORIC_H
#define DORIC_H
#include "DoricExport.h"
2021-05-17 16:18:44 +08:00
#include "DoricLibrary.h"
class DORIC_EXPORT Doric {
2021-05-17 16:18:44 +08:00
public:
static void registerLibrary(DoricLibrary *doricLibrary) {
DoricRegistry::getInstance()->registerLibrary(doricLibrary);
}
};
#endif // DORIC_H