Fixed backslashes in header paths in ConfigurationEngine.cpp Moved version number to 0.1.0 (First Official Beta) git-svn-id: https://svn.microneil.com/svn/SNF4CGP/trunk@38 59e8e3e7-56fa-483b-b4b4-fa6ab0af3dfcmaster
@@ -3,8 +3,8 @@ | |||
// See www.armresearch.com for more information. | |||
#include "ConfigurationEngine.hpp" | |||
#include "..\SNFMulti\SNFMulti.hpp" | |||
#include "..\CodeDweller\configuration.hpp" | |||
#include "../SNFMulti/SNFMulti.hpp" | |||
#include "../CodeDweller/configuration.hpp" | |||
using namespace std; | |||
@@ -101,7 +101,7 @@ class Job { | |||
void finalize(); | |||
string Job::ScanName(); // Scan name from FILE command | |||
string ScanName(); // Scan name from FILE command | |||
void executeCommand(); | |||
void emitException(const string& What); |
@@ -13,7 +13,7 @@ | |||
using namespace std; // Introduce standard namespace. | |||
const string SNF4CGP_VERSION_INFO = "SNF4CGP Version 0.0.5 Build: " __DATE__ " " __TIME__; | |||
const string SNF4CGP_VERSION_INFO = "SNF4CGP Version 0.1.0 Build: " __DATE__ " " __TIME__; | |||
const int ConfigPathArgNumber = 1; | |||
const int CorrectArgcNumber = 2; |