Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#ifndef FWCore_MessageService_test_UnitTestClient_L_h
#define FWCore_MessageService_test_UnitTestClient_L_h

#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"

namespace edm {
  class ParameterSet;
}

namespace edmtest {

  class UnitTestClient_L : public edm::one::EDAnalyzer<> {
  public:
    explicit UnitTestClient_L(edm::ParameterSet const&) {}

    void analyze(edm::Event const& e, edm::EventSetup const& c) final;

  private:
  };

  class UnitTestClient_L1 : public edm::one::EDAnalyzer<> {
  public:
    explicit UnitTestClient_L1(edm::ParameterSet const&) {}

    void analyze(edm::Event const& e, edm::EventSetup const& c) final;

  private:
  };

}  // namespace edmtest

#endif  // FWCore_MessageService_test_UnitTestClient_L_h