view EXCLUDE/GLTSF/src/Main.cpp @ 4731:bfc8ad7234b6

Adding some initial TSF code
author dewyatt
date Thu, 27 May 2010 20:47:52 -0400
parents 6032ada8b9e5
children 0c7c67d4e6ee
line wrap: on
line source

#include "App.hpp"
#include <stdexcept>

int main(int argc, char *argv[])
{
	try
	{
		App theApp;
		theApp.Run();
	}
	catch (const std::exception& e)
	{
		printf("Error: %s\n", e.what());
		return 1;
	}
	return 0;
}