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

14 lines
233 B
C
Raw Normal View History

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