Removed unused lines of code and functions

This commit is contained in:
2017-05-05 19:33:43 -07:00
parent 60f7b314b6
commit 9716687f45

View File

@ -14,28 +14,6 @@
#include "brushdef.hpp"
using namespace std;
// .map files for GTKRadiant
bool writemap(const TWorldSpawn &x,
const char *fn,
void (*f) (std::stringstream &, const vector<TPlanePoints> &)) {
ofstream OutFile;
OutFile.open(fn);
if(!OutFile.is_open())
{
return false;
}
OutFile << "{" << std::endl
<< "\"classname\" \"worldspawn\"" << std::endl;
for(const TBrush& krBrush : x.m_Brushes)
{
OutFile << GetBrushString(krBrush, f);
}
OutFile << "}" << std::endl;
return true;
}
int main(const int _kiArgC, const char** _kppcArgv)
{
@ -46,21 +24,5 @@ int main(const int _kiArgC, const char** _kppcArgv)
}
convertmap(_kppcArgv[1], _kppcArgv[2], &brushdef_net);
/* CMapParser Parser;
const bool kbSuccess = Parser.LoadMap(_kppcArgv[1]);
if(!kbSuccess)
{
return(1);
}
else
{
if (writemap(Parser.m_WorldSpawn, _kppcArgv[2], &brushdef_net)) {
cout << "Successfully exported map." << endl;
} else {
cout << "Failed to write output file." << endl;
}
} */
return(0);
}