From: ehofman Date: Fri, 9 Jan 2004 22:39:32 +0000 (+0000) Subject: Remove a stale source file X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3150506b268d91220190a5ed2e8d93cbf4f1e4d5;p=flightgear.git Remove a stale source file --- diff --git a/utils/3dconvert/3dconvert.cxx b/utils/3dconvert/3dconvert.cxx deleted file mode 100644 index 6ffc1ac7b..000000000 --- a/utils/3dconvert/3dconvert.cxx +++ /dev/null @@ -1,32 +0,0 @@ -#include -#include -#include - -using std::cerr; -using std::endl; - - -int -main (int ac, char ** av) -{ - if (ac != 3) { - cerr << "Usage: " << av[0] << " " << endl; - return 1; - } - - int fakeac = 1; - char * fakeav[] = { "3dconvert", - "Convert a 3D Model", - 0 }; - glutInit(&fakeac, fakeav); - glutCreateWindow(fakeav[1]); - - ssgInit(); - ssgEntity * object = ssgLoad(av[1]); - if (object == 0) { - cerr << "Failed to load " << av[1] << endl; - return 2; - } - - ssgSave(av[2], object); -}