dortint.h

来自「The library provides supports for run-ti」· C头文件 代码 · 共 41 行

H
41
字号
// Copyright (c) 2007, Arne Steinarson// Licensing for DynObj project - see DynObj-license.txt in this folder#ifndef DORT_INT_H#define DORT_INT_H// %%DYNOBJ section general// This section is auto-generated and manual changes will be lost when regenerated!!#ifdef DO_IMPLEMENT_DORTINT    #define DO_IMPLEMENTING     // If app has not defined it already#endif#include "dynobj/DynObj.h"// --- Integer type ids for defined interfaces/classes ---// --- Forward class declarations ---struct DortInternalI;// --- For each declared class, doTypeInfo template specializations ---DO_DECL_TYPE_INFO(DortInternalI,DORTINTERNALI_TYPE_ID);// %%DYNOBJ section end// %% DYNOBJ class(vobj) flags(notypeid)struct DortInternalI {    virtual void docall OnObjectDestroy( DynObj *pdo ) = 0;    virtual void docall TempDisableCreate( bool disable ) = 0;};// %%DYNOBJ section implement// This section is auto-generated and manual changes will be lost when regenerated!!#ifdef DO_IMPLEMENT_DORTINT// Generate type information that auto-registers on module loadDynObjType g_do_vtype_DortInternalI("DortInternalI:VObj",DORTINTERNALI_TYPE_ID,1,sizeof(DortInternalI));#endif //DO_IMPLEMENT_...// %%DYNOBJ section end#endif // DORT_INT_H 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?