ATLAS Offline Software
Loading...
Searching...
No Matches
B.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-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7// $Id: B.h,v 1.2 2005-12-01 19:07:54 ssnyder Exp $
8
18
19#ifndef DMTESTCLASSES_B_H
20#define DMTESTCLASSES_B_H
21
22
23namespace DMTest {
24
25
33struct B
34{
35 B (int b = 0) : m_x (b) {}
36 virtual ~B() {}
37 int m_x;
38};
39
40
41} // namespace DMTest
42
43
44#endif // not DMTESTCLASSES_B_H
Definition B.h:23
int m_x
Definition B.h:37
virtual ~B()
Definition B.h:36
B(int b=0)
Definition B.h:35