|
virtual vtkTypeBool | IsA (const char *type) |
|
vtkDICOMUIDGenerator * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) VTK_DICOM_OVERRIDE |
| Print information about this object.
|
|
void | SetUIDPrefix (const char *prefix) |
| Set a UID prefix to use when generating UIDs. More...
|
|
const char * | GetUIDPrefix () |
| Get the current UID prefix. More...
|
|
virtual std::string | GenerateUID (vtkDICOMTag tag) |
| Generate a UID for the provided tag.
|
|
virtual void | GenerateUIDs (vtkDICOMTag tag, vtkStringArray *uids) |
| Generate a series of UIDs, sorted from low to high. More...
|
|
| vtkBaseTypeMacro (vtkObject, vtkObjectBase) |
|
virtual void | DebugOn () |
|
virtual void | DebugOff () |
|
bool | GetDebug () |
|
void | SetDebug (bool debugFlag) |
|
virtual void | Modified () |
|
virtual vtkMTimeType | GetMTime () |
|
void | PrintSelf (ostream &os, vtkIndent indent) VTK_OVERRIDE |
|
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
|
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
|
vtkCommand * | GetCommand (unsigned long tag) |
|
void | RemoveObserver (vtkCommand *) |
|
void | RemoveObservers (unsigned long event, vtkCommand *) |
|
void | RemoveObservers (const char *event, vtkCommand *) |
|
int | HasObserver (unsigned long event, vtkCommand *) |
|
int | HasObserver (const char *event, vtkCommand *) |
|
void | RemoveObserver (unsigned long tag) |
|
void | RemoveObservers (unsigned long event) |
|
void | RemoveObservers (const char *event) |
|
void | RemoveAllObservers () |
|
int | HasObserver (unsigned long event) |
|
int | HasObserver (const char *event) |
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
|
int | InvokeEvent (unsigned long event, void *callData) |
|
int | InvokeEvent (const char *event, void *callData) |
|
int | InvokeEvent (unsigned long event) |
|
int | InvokeEvent (const char *event) |
|
const char * | GetClassName () const |
|
virtual void | Delete () |
|
virtual void | FastDelete () |
|
void | InitializeObjectBase () |
|
void | Print (ostream &os) |
|
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
|
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
|
virtual void | Register (vtkObjectBase *o) |
|
virtual void | UnRegister (vtkObjectBase *o) |
|
int | GetReferenceCount () |
|
void | SetReferenceCount (int) |
|
void | PrintRevisions (ostream &) |
|
Generate UIDs for written DICOM files.
This class generates UIDs that begin with a specified prefix, and are are followed by a sequence of digits that are sufficiently random that the possibility of UID collisions is vanishingly small. The default prefix 2.25. (which can be used by anyone) is followed by a 128-bit random number. Other prefixes (which can only be used by a designated organization) are followed by a 128-bit random number if the prefix is shorter than 24 chars, or a 96-bit random number if the prefix is 24 chars or longer.