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/context_holder.h
2019-12-13 17:45:27 +08:00

18 lines
245 B
C++

#ifndef CONTEXT_HOLDER_H
#define CONTEXT_HOLDER_H
#include "context.h"
class ContextHolder {
public:
Context *_context;
public:
ContextHolder(Context *context) {
this->_context = context;
}
};
#endif // CONTEXT_HOLDER_H