00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _DOCMGRMANAGER_HPP
00010 #define _DOCMGRMANAGER_HPP
00011 #include "DocumentManager.hpp"
00012
00013 namespace lemur
00014 {
00015 namespace api
00016 {
00017
00019
00023 class DocMgrManager {
00024 public:
00029 static DocumentManager* createDocMgr(string type, string name="",
00030 string parsetype="",
00031 string sources = "");
00032
00042 static DocumentManager* openDocMgr(const string name, bool readOnly = true);
00043 };
00044 }
00045 }
00046
00047 #endif