#include "DistBossServer/DistBossServer.h"
#include <iostream>
Go to the source code of this file.
|
int | main (int argc, char *argv[]) |
|
◆ main()
int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 4 of file ServerMain.cxx.
5{
6 if ( argc != 2 ) {
7 std::cout << "Usage: " << argv[0] << " jobOptions.txt" << std::endl;
8 exit(1);
9 }
10
12
13 server.run();
14
15 return 0;
16}