split project with app & doric module
This commit is contained in:
18
doric-Qt/example/doric/utils/DoricContextHolder.h
Normal file
18
doric-Qt/example/doric/utils/DoricContextHolder.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef DORICCONTEXTHOLDER_H
|
||||
#define DORICCONTEXTHOLDER_H
|
||||
|
||||
#include "../DoricContext.h"
|
||||
|
||||
class DoricContextHolder : public QObject {
|
||||
protected:
|
||||
DoricContext *mContext = NULL;
|
||||
|
||||
public:
|
||||
explicit DoricContextHolder(QObject *parent = nullptr);
|
||||
|
||||
void setContext(DoricContext *context);
|
||||
|
||||
DoricContext *getContext();
|
||||
};
|
||||
|
||||
#endif // DORICCONTEXTHOLDER_H
|
||||
Reference in New Issue
Block a user