All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-tizen-client.error-header.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
#ifndef _Error_H_
#define _Error_H_
#include 

namespace Tizen{
namespace {{prefix}} {

class Error {
public:
	Error();
	Error(int code, std::string message);
	virtual ~Error();


	void init();

	void cleanup();

	int getCode();
	void setCode(int pCode);

	std::string getMessage();
	void setMessage(std::string pMessage);


private:
	int pCode;
	std::string pMessage;
};

}
}
#endif /* Error_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy