1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// -*- C++ -*-
//
// Implementation:
// Explicitly instantiate implementor templates for EDAnalyzerBase
//
// Original Author: W. David Dagenhart
// Created: 23 June 2020
#include "FWCore/Framework/src/global/implementorsMethods.h"
#include "FWCore/Framework/interface/global/EDAnalyzerBase.h"
namespace edm {
namespace global {
namespace impl {
template class WatchProcessBlock<edm::global::EDAnalyzerBase>;
} // namespace impl
} // namespace global
} // namespace edm
|