IB-0.2
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
IB.h
Go to the documentation of this file.
1 /*////////////////////////////////////////////////////////////////////////////
2  Copyright 2018 Istituto Nazionale di Fisica Nucleare
3 
4  Licensed under the EUPL, Version 1.2 or - as soon they will be approved by
5  the European Commission - subsequent versions of the EUPL (the "Licence").
6  You may not use this work except in compliance with the Licence.
7 
8  You may obtain a copy of the Licence at:
9 
10  https://joinup.ec.europa.eu/software/page/eupl
11 
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
14  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  Licence for the specific language governing permissions and limitations under
16  the Licence.
18 
19 
20 
21 /*
22  * File: IB.h
23  * Author: andrea
24  *
25  * Created on June 8, 2011, 3:13 PM
26  */
27 
28 
29 #include <ostream>
30 
31 namespace IB {
32 
33 class Version {
34 public:
35  static const char *PackageName;
36  static const char *VersionNumber;
37  static const char *Release;
38 
39  static void PrintSelf(std::ostream &o);
40 };
41 
42 
43 //class TestObject : public Object {
44 // uLibTypeMacro(TestObject,Object)
45 //public:
46 // properties() {
47 // int a;
48 // int b;
49 // };
50 
51 //};
52 
53 //inline void TestObject::init_properties() {
54 // $_init();
55 // $$.a = 123;
56 // $$.b = 5552368;
57 //}
58 
59 
60 }
static void PrintSelf(std::ostream &o)
static const char * Release
Definition: IB.h:37
Definition: IB.h:33
static const char * PackageName
Definition: IB.h:35
static const char * VersionNumber
Definition: IB.h:36