context holder & generic
This commit is contained in:
9
doric-Qt/doric/utils/DoricContextHolder.cpp
Normal file
9
doric-Qt/doric/utils/DoricContextHolder.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "DoricContextHolder.h"
|
||||
|
||||
DoricContextHolder::DoricContextHolder(QObject *parent) { mContext = NULL; }
|
||||
|
||||
void DoricContextHolder::setContext(DoricContext *context) {
|
||||
mContext = context;
|
||||
}
|
||||
|
||||
DoricContext *DoricContextHolder::getContext() { return mContext; }
|
18
doric-Qt/doric/utils/DoricContextHolder.h
Normal file
18
doric-Qt/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