obj.h

来自「face recognition using hmm. first versio」· C头文件 代码 · 共 29 行

H
29
字号
/*
/*	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 + =
减小字号Ctrl + -
显示快捷键?