Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:27

0001 #ifndef CondCore_CondDB_IDbAuthentication_h
0002 #define CondCore_CondDB_IDbAuthentication_h
0003 
0004 #include <string>
0005 
0006 namespace cond {
0007 
0008   namespace persistency {
0009 
0010     class IDbAuthentication {
0011     public:
0012       virtual ~IDbAuthentication() {}
0013       virtual std::string principalName() = 0;
0014     };
0015   }  // namespace persistency
0016 }  // namespace cond
0017 #endif