source: Sophya/trunk/SophyaLib/BaseTools/anydataobj.h@ 4064

Last change on this file since 4064 was 2657, checked in by ansari, 20 years ago

1/ Correction petite erreur ds NDataBlock et recuperation de
MemoryObjectId a travers une fonction globale (static) ds AnyDataObj
2/ Ajout fonctions pour lister les classes PPersist handler ds ppersist.h .cc

Reza, 5 Avril 2005

File size: 528 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
10namespace SOPHYA {
11
12//! Ancestor class for all data objects (for RTTI).
13
14class AnyDataObj {
15public:
16 AnyDataObj() { }
17 virtual ~AnyDataObj() { }
18
19//! Return a process wide unique identifier
20 static uint_8 getUniqueId();
21};
22
23}
24
25#endif
Note: See TracBrowser for help on using the repository browser.