rename dir
This commit is contained in:
17
doric-Qt/doric/context_holder.h
Normal file
17
doric-Qt/doric/context_holder.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef CONTEXT_HOLDER_H
|
||||
#define CONTEXT_HOLDER_H
|
||||
|
||||
#include "context.h"
|
||||
|
||||
class ContextHolder : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
Context *_context;
|
||||
|
||||
public:
|
||||
ContextHolder(Context *context, QObject *parent = nullptr) : QObject(parent) {
|
||||
this->_context = context;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // CONTEXT_HOLDER_H
|
||||
Reference in New Issue
Block a user