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 Integration_Doodad_h
#define Integration_Doodad_h
// -*- C++ -*-
//
// Package: Integration
// Class : Doodad
//
/**\class Doodad Doodad.h FWCore/Integration/interface/Doodad.h
Description: Dummy class used to test the EventSetup in the integration test
Usage:
Isn't actually usable :)
*/
//
// Original Author: Chris Jones
// Created: Fri Jun 24 13:23:03 EDT 2005
//
// system include files
// user include files
// forward declarations
namespace edmtest {
struct Doodad {
Doodad() : a() {}
int a;
};
} // namespace edmtest
#endif
|