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