/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/TestProcessor/interface/ESPutTokenT.h
49 строк
917 B
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
#ifndef Framework_TestProcessor_ESPutTokenT_h #define Framework_TestProcessor_ESPutTokenT_h // -*- C++ -*- // // Package: Framework/TestProcessor // Class : ESPutTokenT // /**\class ESPutTokenT ESPutTokenT.h "ESPutTokenT.h" Description: [one line class summary] Usage: <usage> */ // // Original Author: Chris Jones // Created: Tue, 08 May 2018 19:46:32 GMT // // system include files // user include files // forward declarations namespace edm { namespace test { class TestProcessorConfig; template <typename T> class ESPutTokenT { public: friend class TestProcessorConfig; ESPutTokenT() : index_{undefinedIndex()} {} int index() const { return index_; } static int undefinedIndex() { return -1; } private: ESPutTokenT(int iIndex) : index_{iIndex} {}; int index_; }; } // namespace test } // namespace edm #endif