CP3-llbb Framework
ProducerGetter.h
1 #pragma once
2 
3 #include <string>
4 
5 namespace Framework {
6  class Producer;
7 };
8 
10  public:
11  virtual const Framework::Producer& getProducer(const std::string& name) const = 0;
12  virtual bool producerExists(const std::string& name) const = 0;
13 };
Base class for Framework producers.
Definition: Producer.h:33
Definition: ProducerGetter.h:9