ROOTANA
xmlServer.h
Go to the documentation of this file.
1 //
2 // netDirectoryServer.h
3 //
4 // $Id$
5 //
6 
7 class TDirectory;
8 class TFolder;
9 class TCollection;
10 
11 class XmlServer
12 {
13  public:
14  void Start(int port);
15  void SetVerbose(bool verbose);
16  void Export(TDirectory* dir, const char* exportName);
17  void Export(TFolder* folder, const char* exportName);
18  void Export(TCollection* collection, const char* exportName);
19 };
20 
21 // end
void Export(TDirectory *dir, const char *exportName)
Definition: xmlServer.cxx:990
void SetVerbose(bool verbose)
Definition: xmlServer.cxx:983
void Start(int port)
Definition: xmlServer.cxx:1044