00001 #include "DefaultLoader.h" 00002 #include "XercesLoader.h" 00003 #include "DefaultNodeCreationProxy.h" 00004 00005 #include <iostream> 00006 00007 using namespace X3DTK; 00008 using namespace std; 00009 00010 DefaultLoader::DefaultLoader() 00011 : XercesLoader(new DefaultNodeCreationProxy()) 00012 { 00013 } 00014 00015 DefaultLoader::~DefaultLoader() 00016 { 00017 delete ncp; 00018 }