/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondDB/interface/FileUtils.h
27 строк
521 B
Cms Build
Clang-Format
29 май 2019, 08:23
29 май 2019, 08:23
087900c
Код
Авторство
О чём код?
#ifndef CondCore_CondDB_FileUtils_h #define CondCore_CondDB_FileUtils_h #include <string> namespace cond { class FileReader { public: FileReader(); virtual ~FileReader() {} bool read(const std::string& fileName); const std::string& content() const; private: std::string m_content; }; } // namespace cond inline cond::FileReader::FileReader() : m_content("") {} inline const std::string& cond::FileReader::content() const { return m_content; } #endif // CondCore_CondDB_FileUtils_h