/*******************************************************************
 * Function Name: WriteBanner
 * Return Type 	: int
 * Created On	: Feb 11, 2013
 * Created By 	: hrushi
 * Comments		: Writes the banner for the given file
 * Arguments	:
 *******************************************************************/
int Features::WriteBanner( )
{
	// Set the pointer to the starting of the file
	fPtr.seekp(0, std::ios::beg);

	Time T;
	fPtr << "# " << STARS << STARS << endl;
	fPtr << "# Features File " << endl;
	fPtr << "# Description: Contains all the features for the given image " << endl;
	fPtr << "# Created On : " << T.GetCurrentTime() << endl;
	fPtr << "# " << STARS << STARS << endl;
	return EXIT_SUCCESS;

}