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);
}
|