File: LoaderMain.cpp

package info (click to toggle)
indi 2.1.9%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,888 kB
  • sloc: cpp: 217,447; ansic: 31,363; xml: 1,195; sh: 311; makefile: 13
file content (19 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>

#include "LoaderClient.h"

using namespace std;

static LoaderClient Client;

int main(int argc, char *argv[])
{
    Client.Initialise(argc, argv);

    Client.Load();

    cout << "Press any key followed by return to terminate the client.\n";
    string term;
    cin >> term;
    return 0;
}