1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CondCore_CondDB_IDbAuthentication_h
#define CondCore_CondDB_IDbAuthentication_h
#include <string>
namespace cond {
namespace persistency {
class IDbAuthentication {
public:
virtual ~IDbAuthentication() {}
virtual std::string principalName() = 0;
};
} // namespace persistency
} // namespace cond
#endif
|