#include "Batch.h"#include <iostream>#include <cstdlib>#include <log.h>#include <time.h>Include dependency graph for Batch.cpp:

Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
|
||||||||||||
|
Definition at line 11 of file Batch.cpp. References Batch::Init(). 00011 {
00012 bool debug = false;
00013 if(argc==2) {
00014 if(string(argv[1]) == "debug") debug = true;
00015 }
00016 Batch b = Batch(debug);
00017 b.Init();
00018 return 0;
00019 }
|
Here is the call graph for this function:

1.3.9.1