reflex2q3/ReflexToQ3/main.cpp

28 lines
449 B
C++
Raw Normal View History

2015-02-02 08:11:03 +05:30
//
// Author: Michael Cameron
// Email: chronokun@hotmail.com
//
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
#include <iostream>
2017-05-06 08:03:26 +05:30
#include "oopless-parser.hpp"
2017-04-11 20:57:10 +05:30
#include "brushdef.hpp"
2015-02-02 08:11:03 +05:30
using namespace std;
2015-02-02 08:11:03 +05:30
int main(const int _kiArgC, const char** _kppcArgv)
{
// Check we have correct number of parameters
if(_kiArgC < 3)
{
return(3);
}
2017-05-06 08:03:26 +05:30
convertmap(_kppcArgv[1], _kppcArgv[2], &brushdef_net);
2015-02-02 08:11:03 +05:30
return(0);
2017-04-02 19:34:09 +05:30
}