ATLAS Offline Software
D.h
Go to the documentation of this file.
1 // This file's extension implies that it's C, but it's really -*- C++ -*-.
2 
3 /*
4  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // $Id: D.h,v 1.2 2005-12-01 19:07:54 ssnyder Exp $
8 
20 
21 #ifndef DMTESTCLASSES_D_H
22 #define DMTESTCLASSES_D_H
23 
24 namespace DMTest {
25 
26 
34 struct D
35  : public /*virtual*/ B
36 {
37  D (int d = 0) : B (d+1), m_x (d) {}
38  // cppcheck-suppress duplInheritedMember
39  int m_x;
40 };
41 
42 
43 } // namespace DMTest
44 
45 
46 #endif // not DMTESTCLASSES_D_H
hist_file_dump.d
d
Definition: hist_file_dump.py:137
B.h
Class used for testing the new DataVector inheritance scheme.
DMTest::D
Derived contained class for DataVector tests.
Definition: D.h:36
DMTest::B
Base contained class for DataVector tests.
Definition: B.h:34
DMTest::D::m_x
int m_x
Definition: D.h:39
DMTest::D::D
D(int d=0)
Definition: D.h:37
DMTest
Definition: B.h:23