This repository has been archived on 2024-07-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Doric/doric-Qt/example/doric/Doric.h
2021-05-20 18:27:45 +08:00

14 lines
233 B
C++

#ifndef DORIC_H
#define DORIC_H
#include "DoricLibrary.h"
class Doric {
public:
static void registerLibrary(DoricLibrary *doricLibrary) {
DoricRegistry::getInstance()->registerLibrary(doricLibrary);
}
};
#endif // DORIC_H