/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondDB/src/IDbAuthentication.h
17 строк
345 B
Giacomo Govi
Code-format
25 янв 2021, 15:36
25 янв 2021, 15:36
ce9f9a9
Код
Авторство
О чём код?
#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