initial code to step through tree looking for modules, and calculating their relative paths, for now just print out our findings and clean up.

svn path=/branches/xmlbuildsystem/; revision=12777
This commit is contained in:
Royce Mitchell III
2005-01-04 04:04:32 +00:00
parent 24bc72075e
commit 0b41f2cc93
4 changed files with 147 additions and 44 deletions

View File

@@ -1,5 +1,13 @@
#include "rbuild.h"
Module::Module(XMLElement moduleNode)
{
using std::string;
using std::vector;
Module::Module ( const XMLElement& moduleNode,
const string& moduleName,
const string& modulePath)
: node(moduleNode),
name(moduleName),
path(modulePath)
{
}