CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OutputModule.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_one_OutputModule_h
2 #define FWCore_Framework_one_OutputModule_h
3 // -*- C++ -*-
4 //
5 // Package: FWCore/Framework
6 // Class : edm::one::OutputModule
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Wed, 31 Jul 2013 18:21:29 GMT
19 //
20 
21 // system include files
22 
23 // user include files
25 
26 // forward declarations
27 namespace edm {
28  namespace one {
29  template< typename... T>
30  class OutputModule : public virtual OutputModuleBase,
32  {
33 
34  public:
36  outputmodule::AbilityToImplementor<T>::Type(iPSet)...
37  {}
38  // Required to work around ICC bug, but possible source of bloat in gcc.
39  // We do this only in the case of the intel compiler as this might end up
40  // creating a lot of code bloat due to inline symbols being generated in
41  // each DSO which uses this header.
42 #ifdef __INTEL_COMPILER
43  virtual ~OutputModule() = default;
44 #endif
45 
46  // ---------- const member functions ---------------------
47 
48  // ---------- static member functions --------------------
49 
50  // ---------- member functions ---------------------------
51 
52  private:
53  OutputModule(const OutputModule&) = delete; // stop default
54 
55  const OutputModule& operator=(const OutputModule&) =delete; // stop default
56 
57  // ---------- member data --------------------------------
58 
59  };
60  }
61 }
62 
63 #endif
const OutputModule & operator=(const OutputModule &)=delete
long double T
OutputModule(edm::ParameterSet const &iPSet)
Definition: OutputModule.h:35