// File        : Template.cpp
// Authors     : 
// Description : 

#include"Template.hpp"

namespace YourNameSpace
{

	//////////////////////////////////////////////////////////////////////////
	// life-cycle

	// TODO place life-cycle methods code here; examples:
	/*
	YourClass::YourClass():
		_yourMember(-1)
	{
		_instances.push_back(this);
	}
	*/


	//////////////////////////////////////////////////////////////////////////
	// access & service
	
	// TODO: insert access and service methods code here; examples:
	/*
	int YourClass::methodOne() const
	{
	
		return _yourMember;
	}
	*/


	//////////////////////////////////////////////////////////////////////////
	// auxiliaries
	
	// TODO: insert auxiliary methods code here


	//////////////////////////////////////////////////////////////////////////
	// types
	
	// TODO: insert private types code here


	//////////////////////////////////////////////////////////////////////////
	// static data

	// TODO: insert static private data members definition here; examples:
	// /*static*/ std::vector<YourClass*> YourClass::_instances;

}; // namespace nqunit
