summaryrefslogtreecommitdiff
path: root/src/test1.cpp
blob: 2aec5c7d6d2f252447ed81f76368d1efabccde43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define Uses_TApplication
#define Uses_TEditorApp
#include <tv.h>

int main( ) {
	TEditorApp *app = new TEditorApp( );
	if( app ) {
		app->run( );
		delete app;
	}
	return 0;
}