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
|
// -*- C++ -*-
//
// Package: DataFormats
// Class : LumiHistoryGetter
//
// Implementation:
// [Notes on implementation]
//
// Original Author:
// Created: Wed Feb 10 11:15:18 CST 2010
//
// system include files
// user include files
#include "DataFormats/FWLite/interface/HistoryGetterBase.h"
namespace fwlite {
//
// constructors and destructor
//
HistoryGetterBase::HistoryGetterBase() {}
HistoryGetterBase::~HistoryGetterBase() {}
} // namespace fwlite
|