source: Sophya/trunk/Poubelle/archTOI.old/archtoimain.cc@ 436

Last change on this file since 436 was 436, checked in by ansari, 26 years ago

vendredi soir...

File size: 700 bytes
Line 
1// archtoimain.cc
2// Eric Aubourg CEA/DAPNIA/SPP juillet 1999
3
4#include <iostream.h>
5#include <fstream.h>
6#include <iomanip.h>
7
8#include "archeopsfile.h"
9#include "archtoi.h"
10#include "toisvr.h"
11
12//#include <profiler.h>
13
14#ifdef __MWERKS__
15#include <console.h>
16#endif
17
18using namespace std; //introduces namespace std
19
20int main(int argc, char** argv)
21{
22#ifdef __MWERKS__
23 argc = ccommand(&argv);
24#endif
25 if (argc != 3) {
26 cerr << "usage: archtoi reqfile datafile" << endl;
27 return(-1);
28 }
29
30// ProfilerInit(collectDetailed, bestTimeBase, 10000, 200);
31
32
33 ArchTOI toi(argv[1]);
34 toi.run(argv[2]);
35
36// ProfilerDump("\pprofiler.data");
37 return(0);
38}
Note: See TracBrowser for help on using the repository browser.