htest6model.h

来自「hoops_acis_mfc框架」· C头文件 代码 · 共 47 行

H
47
字号
// Htest6Model.h : interface of the Htest6Model.cpp class, derived from HBaseModel
// Adds application-specific data and members for each model

#ifndef _Htest6Model_H
#define _Htest6Model_H

#include "HDB.h"
#include "HBaseModel.h"
#include "HTools.h"

#include "ha_bridge.h"

class Htest6Model : public HBaseModel
{
public:

	Htest6Model();
	~Htest6Model();

	// Overrides
	HFileInputResult Read(const char * FileName);
	bool Write(const char * FileName, HBaseView * pHView, int version, int width = 0, int height = 0);

	void	DeleteAllEntities();

	bool	IsSolidModel(){ return m_bSolidModel; };

	void DeleteAcisEntity( ENTITY* entity);
	ENTITY_LIST& GetEntityList() { return m_entityList; }


protected:

	// list of entities (bodies) in this model	
	ENTITY_LIST m_entityList; 

	// do we have any solid modeler entities
	bool	m_bSolidModel;

};

#endif




⌨️ 快捷键说明

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