File: Main.cpp

package info (click to toggle)
snap-aligner 2.0.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,724 kB
  • sloc: cpp: 41,071; ansic: 5,239; python: 227; makefile: 85; sh: 28
file content (33 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*++

Module Name:

    Main.cpp

Abstract:

   Just call into the command processor from SNAPLib

Authors:

    Matei Zaharia & Bill Bolosky, February, 2012

Environment:

    User mode service.

Revision History:

    Adapted from cSNAP, which was in turn adapted from the scala prototype

--*/

#include "stdafx.h"
#include "CommandProcessor.h"

//The SNAP_VERSION string moved to SNAPLib\CommandProcessor.cpp

int main(int argc, const char **argv)
{
	ProcessTopLevelCommands(argc, argv);
}