2015-02-02 08:11:03 +05:30
|
|
|
//
|
|
|
|
// Author: Michael Cameron
|
|
|
|
// Email: chronokun@hotmail.com
|
|
|
|
//
|
|
|
|
|
2017-04-12 12:48:29 +05:30
|
|
|
|
|
|
|
#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
|
|
|
|
2017-04-11 02:59:47 +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
|
|
|
}
|