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-Qt/doric/constant.h

29 lines
722 B
C
Raw Normal View History

2019-12-04 15:51:46 +08:00
#ifndef CONSTANT_H
#define CONSTANT_H
#include <QString>
class Constant {
public:
static const QString INJECT_LOG;
static const QString INJECT_REQUIRE;
static const QString INJECT_TIMER_SET;
static const QString INJECT_TIMER_CLEAR;
static const QString INJECT_BRIDGE;
static const QString INJECT_EMPTY;
static const QString TEMPLATE_CONTEXT_CREATE;
static const QString TEMPLATE_MODULE;
static const QString TEMPLATE_CONTEXT_DESTROY;
static const QString GLOBAL_DORIC;
static const QString DORIC_CONTEXT_INVOKE;
2019-12-04 15:51:46 +08:00
static const QString DORIC_TIMER_CALLBACK;
2019-12-04 16:44:30 +08:00
static const QString DORIC_ENTITY_INIT;
static const QString DORIC_ENTITY_SHOW;
2019-12-04 15:51:46 +08:00
};
#endif // CONSTANT_H