reflex2q3/ReflexToQ3/main.cpp

28 lines
449 B
C++

//
// Author: Michael Cameron
// Email: chronokun@hotmail.com
//
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
#include <iostream>
#include "oopless-parser.hpp"
#include "brushdef.hpp"
using namespace std;
int main(const int _kiArgC, const char** _kppcArgv)
{
// Check we have correct number of parameters
if(_kiArgC < 3)
{
return(3);
}
convertmap(_kppcArgv[1], _kppcArgv[2], &brushdef_net);
return(0);
}