28 lines
449 B
C++
Raw Normal View History

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