/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Integration/plugins/ValueExample.h
48 строк
1 KB
Chris Jones
Moved plugins to FWCore/Integration/plugins
10 янв 2023, 17:49
10 янв 2023, 17:49
974ebbd
Код
Авторство
О чём код?
#ifndef Integration_test_ValueExample_h #define Integration_test_ValueExample_h // -*- C++ -*- // // Package: Integration // Class : ValueExample // /**\class ValueExample ValueExample.h FWCore/Integration/test/stubs/ValueExample.h Description: An example of a trivial Service Usage: <usage> */ // // Original Author: Chris Jones // Created: Mon Sep 5 19:51:59 EDT 2005 // namespace edm { class ParameterSet; class ConfigurationDescriptions; } // namespace edm class ValueExample { public: ValueExample(const edm::ParameterSet&); virtual ~ValueExample(); // ---------- const member functions --------------------- int value() const { return value_; } // ---------- static member functions -------------------- static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); // ---------- member functions --------------------------- private: ValueExample(const ValueExample&) = delete; // stop default const ValueExample& operator=(const ValueExample&) = delete; // stop default // ---------- member data -------------------------------- int value_; }; #endif