IPoolCacheSvc.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef POOLDB_IPOOLCACHESVC_H
00010 #define POOLDB_IPOOLCACHESVC_H
00011
00012
00013 #include "GaudiKernel/IInterface.h"
00014 #include "StorageSvc/DbSession.h"
00015
00016
00017 #include <string>
00018
00019
00020 namespace pool {
00021 class DbType;
00022 class DbSession;
00023 class DbOptionCallback;
00024 }
00025
00041 class GAUDI_API IPoolCacheSvc: virtual public IInterface
00042 {
00043 public:
00045 DeclareInterfaceID(IPoolCacheSvc,2,0);
00046
00048 virtual pool::DbSession& session() = 0;
00049
00051
00055 virtual StatusCode loadDictionary(const std::string& name) = 0;
00056
00058
00060 virtual pool::DbOptionCallback* callbackHandler() const = 0;
00061 };
00062
00063 #endif // POOLDB_IPOOLCACHESVC_H