updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today

This commit is contained in:
ejcoumans
2006-07-26 18:58:09 +00:00
parent 750af5c197
commit 7038e5c736
353 changed files with 21354 additions and 6259 deletions

View File

@@ -83,7 +83,7 @@ private:
void postProcessDom(daeDocument *document, daeElement* element, std::vector<INTEGRATION_ITEM> &intItems);
void writeElement( daeElement* element );
void writeAttribute( daeMetaAttribute* attr, daeElement* element );
void writeAttribute( daeMetaAttribute* attr, daeElement* element, daeInt attrNum = -1 );
void readAttributes( daeElement *element, xmlTextReaderPtr reader );
void readValue( daeElement *element, xmlTextReaderPtr reader );

View File

@@ -17,6 +17,8 @@
#include <stdio.h>
#include <vector>
#include <map>
#include <string>
#include <algorithm>
#include <functional>
@@ -117,18 +119,10 @@ private:
};
std::vector<DAE_STL_DATABASE_CELL> elements;
std::multimap< std::string, DAE_STL_DATABASE_CELL> elementsIDMap;
std::vector<daeDocument*> documents;
bool validated;
daeMetaElement* topMeta;
//!!!ACL removing this function.
/*daeInt getElementByType(daeElement** pElement,
int *currentIndex,
int index,
daeString name = NULL,
daeString type = NULL,
daeString file = NULL);*/
daeInt insertChildren( daeDocument *c, daeElement *element );
daeInt removeChildren( daeDocument *c, daeElement *element );