17 lines
329 B
C++
17 lines
329 B
C++
#include "testXMLParser.h"
|
|
|
|
#include "cmXMLParser.h"
|
|
|
|
#include <iostream>
|
|
|
|
int testXMLParser(int, char* [])
|
|
{
|
|
// TODO: Derive from parser and check attributes.
|
|
cmXMLParser parser;
|
|
if (!parser.ParseFile(SOURCE_DIR "/testXMLParser.xml")) {
|
|
std::cerr << "cmXMLParser failed!" << std::endl;
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|