The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
MyClass1.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12// ============================================================================
13// Include files
14// ============================================================================
15// #include "Kernel/Point3DTypes.h"
16// #include "Kernel/Point4DTypes.h"
17// #include "Kernel/GenericMatrixTypes.h"
18// ============================================================================
19
28class MyClass1 {
29public:
30 MyClass1();
31 virtual ~MyClass1();
32
33private:
34 // Empty class
35 // Gaudi::XYZPoint m_point ;
36 // Gaudi::XYZTPoint m_point4 ;
37 // Gaudi::Matrix4x3 m_3x4 ;
38 // Gaudi::Matrix7x7 m_7x7 ;
39 // double m_double ;
40 // int m_int[10];
41 // int m_int[3];
42 // int m_int2[2];
43 // int m_int100[100];
44 int m_int0{ 0 };
45};
46
47// ============================================================================
48// The END
49// ============================================================================
int m_int0
Definition MyClass1.h:44
virtual ~MyClass1()
Definition MyClass1.cpp:30