📄 dxfsectionbase.h
字号:
/* dxfReader for OpenSceneGraph Copyright (C) 2005 by GraphArchitecture ( grapharchitecture.com ) * Programmed by Paul de Repentigny <pdr@grapharchitecture.com> * * OpenSceneGraph is (C) 2004 Robert Osfield * * This library is provided as-is, without support of any kind. * * Read DXF docs or OSG docs for any related questions. * * You may contact the author if you have suggestions/corrections/enhancements. */#ifndef DXF_SECTIONBASE#define DXF_SECTIONBASE 1#include <osg/Referenced>class dxfFile;class codeValue;/// abstract base class for sections. see dxfSection.hclass dxfSectionBase : public osg::Referenced{public: dxfSectionBase() {} virtual ~dxfSectionBase() {} virtual void assign(dxfFile* dxf, codeValue& cv) = 0;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -