Last change
on this file since 1873 was 895, checked in by ansari, 25 years ago |
Documentation de fichiers - Reza 12/4/2000
|
File size:
451 bytes
|
Line | |
---|
1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
2 | // Ancetre commun de tous les objets pour rtti
|
---|
3 | // R.Ansari 04/99
|
---|
4 | // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA
|
---|
5 | #ifndef ANYDATAOBJ_H_SEEN
|
---|
6 | #define ANYDATAOBJ_H_SEEN
|
---|
7 |
|
---|
8 | #include "machdefs.h"
|
---|
9 |
|
---|
10 | namespace SOPHYA {
|
---|
11 |
|
---|
12 | //! Ancestor class for all data objects (for RTTI).
|
---|
13 |
|
---|
14 | class AnyDataObj {
|
---|
15 | public:
|
---|
16 | AnyDataObj() { }
|
---|
17 | virtual ~AnyDataObj() { }
|
---|
18 | };
|
---|
19 |
|
---|
20 | }
|
---|
21 |
|
---|
22 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.