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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// -*- C++ -*-
//
// Package: LibraryLoader
// Class : AutoLibraryLoader
//
// Implementation:
// <Notes on implementation>
//
// Original Author:
// Created: Wed Nov 30 14:55:01 EST 2005
//
// system include files
#include <iostream>
// user include files
#include "FWCore/FWLite/interface/AutoLibraryLoader.h"
#include "FWCore/FWLite/interface/FWLiteEnabler.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
AutoLibraryLoader::AutoLibraryLoader() {}
//
// member functions
//
void AutoLibraryLoader::enable() {
std::cerr << "WARNING: AutoLibraryloader::enable() and AutoLibraryLoader.h are deprecated.\n"
<< "Use FWLiteEnabler::enable() and FWLiteEnabler.h instead" << std::endl;
FWLiteEnabler::enable();
}
void AutoLibraryLoader::loadAll() {
std::cerr << "WARNING: AutoLibraryloader::loadAll() and AutoLibraryLoader.h are deprecated.\n"
<< "Use FWLiteEnabler::enable() and FWLiteEnabler.h instead" << std::endl;
FWLiteEnabler::enable();
}
|