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

📄 obj.h

📁 face recognition using hmm. first version.
💻 H
字号:
/*
/*	Description: Implements a simple description of an object
*/

#ifndef _Obj_H_
#define _Obj_H_

#include <string>
#include <vector>

class Obj
{
public:

	Obj( );

	virtual ~Obj( );

	void Create( const std::string &userName );

	const std::string& GetName( ) const;

protected:

	//Stores the name of the object
	std::string _name;
};

#endif //_Obj_H_

⌨️ 快捷键说明

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