1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// -*- C++ -*-
//
// Package: test
// Class : ValueExample
//
// Implementation:
// <Notes on implementation>
//
// Original Author: Chris Jones
// Created: Mon Sep 5 19:52:01 EDT 2005
//
// system include files
// user include files
#include "ValueExample.h"
#include "FWCore/ServiceRegistry/interface/ServiceMaker.h"
using namespace edm::serviceregistry;
DEFINE_FWK_SERVICE_MAKER(ValueExample, ParameterSetMaker<ValueExample>);
|