CMS 3D CMS Logo

SonicClient.h
Go to the documentation of this file.
1 #ifndef HeterogeneousCore_SonicCore_SonicClient
2 #define HeterogeneousCore_SonicCore_SonicClient
3 
6 
7 //convenience definition for multiple inheritance (base and types)
8 template <typename InputT, typename OutputT = InputT>
9 class SonicClient : public SonicClientBase, public SonicClientTypes<InputT, OutputT> {
10 public:
11  //constructor
13  : SonicClientBase(params, debugName, clientName), SonicClientTypes<InputT, OutputT>() {}
14 };
15 
16 #endif
const std::string & debugName() const
const std::string & clientName() const
SonicClient(const edm::ParameterSet &params, const std::string &debugName, const std::string &clientName)
Definition: SonicClient.h:12