/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #ifndef LAF_SVC_MGR_H 00002 #define LAF_SVC_MGR_H 00003 00004 #include "LafKernel/ElementMgr.h" 00005 #include "LafKernel/SvcBase.h" 00006 00007 class SvcMgr : public ElementMgr<SvcBase> 00008 { 00009 public : 00010 00011 static SvcMgr* instance(); 00012 00013 00014 private : 00015 00016 SvcMgr(const std::string& name); 00017 00018 friend class SvcFactory; 00019 static SvcMgr* _instance; 00020 }; 00021 00022 #endif