⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 operationcontainer.h

📁 uml编辑器很牛
💻 H
字号:
#ifndef _OPERATIONCONTAINER_H_5DE26980_B9B9_4899_8993C9B614
#define _OPERATIONCONTAINER_H_5DE26980_B9B9_4899_8993C9B614

///////////////////////////////////////////////////////////
// File :		COperationContainer.h
// Created :	06/08/04
//
#include "Operation.h"

class COperationContainer
{
public:
	// Construction/destruction
	COperationContainer();
	virtual ~COperationContainer();

// Operations
	void Copy( COperationContainer & operations );
	int GetSize(  ) const;
	COperation* GetAt( int index ) const;
	void RemoveAt( int index );
	void RemoveAll(  );
	void Add( COperation * operation );
	CString GetString( int format = STRING_FORMAT_SAVE ) const;
	void SetSize( int size );
	void SetAt( int index, COperation* obj );

// Attributes

private:
	CObArray m_operations;


};
#endif //_OPERATIONCONTAINER_H_5DE26980_B9B9_4899_8993C9B614

⌨️ 快捷键说明

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