00001 // 00002 // netDirectoryServer.h 00003 // 00004 // $Id$ 00005 // 00006 00007 class TDirectory; 00008 class TFolder; 00009 class TCollection; 00010 00011 class XmlServer 00012 { 00013 public: 00014 void Start(int port); 00015 void SetVerbose(bool verbose); 00016 void Export(TDirectory* dir, const char* exportName); 00017 void Export(TFolder* folder, const char* exportName); 00018 void Export(TCollection* collection, const char* exportName); 00019 }; 00020 00021 // end