/usr/include/openigtlink/igtlObject.h is in libopenigtlink-dev 1.10.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | /*=========================================================================
Program: The OpenIGTLink Library
Language: C++
Web page: http://openigtlink.org/
Copyright (c) Insight Software Consortium. All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkObject.h,v $
Language: C++
Date: $Date: 2008-12-22 19:05:42 -0500 (Mon, 22 Dec 2008) $
Version: $Revision: 3460 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __igtlObject_h
#define __igtlObject_h
#include "igtlLightObject.h"
//#include "igtlTimeStamp.h"
//#include "igtlEventObject.h"
//#include "igtlMetaDataDictionary.h"
#include "igtlConfigure.h"
namespace igtl
{
//class SubjectImplementation;
//class Command;
/** \class Object
* \brief Base class for most igtl classes.
*
* Object is the second-highest level base class for most igtl objects.
* It extends the base object functionality of LightObject by
* implementing callbacks (via object/observer), debug flags/methods,
* and modification time tracking. Most IGTL classes should be a subclas
* of Object due to the need to keep track of modified time.
*
* \ingroup IGTLSystemObjects
* \ingroup DataRepresentation
*/
class IGTLCommon_EXPORT Object: public LightObject
{
public:
/** Smart pointer typedef support. */
typedef Object Self;
typedef LightObject Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
static Pointer New();
/** Create an object from an instance, potentially deferring to a
* factory. This method allows you to create an instance of an
* object that is exactly the same type as the referring object.
* This is useful in cases where an object has been cast back to a
* base class. */
virtual LightObject::Pointer CreateAnother() const;
/** Standard part of all igtl objects. */
igtlTypeMacro(Object, LightObject);
/** Turn debugging output on. */
virtual void DebugOn() const;
/** Turn debugging output off. */
virtual void DebugOff() const;
/** Get the value of the debug flag. */
bool GetDebug() const;
/** Set the value of the debug flag. A non-zero value turns debugging on. */
void SetDebug(bool debugFlag) const;
/** Return this objects modified time. */
// virtual unsigned long GetMTime() const;
/** Update the modification time for this object. Many filters rely on the
* modification time to determine if they need to recompute their data. */
// virtual void Modified() const;
/** Increase the reference count (mark as used by another object). */
virtual void Register() const;
/** Decrease the reference count (release by another object). */
virtual void UnRegister() const;
/** Sets the reference count (use with care) */
virtual void SetReferenceCount(int);
/** This is a global flag that controls whether any debug, warning
* or error messages are displayed. */
static void SetGlobalWarningDisplay(bool flag);
static bool GetGlobalWarningDisplay();
static void GlobalWarningDisplayOn()
{ Object::SetGlobalWarningDisplay(true); }
static void GlobalWarningDisplayOff()
{ Object::SetGlobalWarningDisplay(false); }
/** Allow people to add/remove/invoke observers (callbacks) to any IGTL
* object. This is an implementation of the subject/observer design
* pattern. An observer is added by specifying an event to respond to
* and an igtl::Command to execute. It returns an unsigned long tag
* which can be used later to remove the event or retrieve the
* command. The memory for the Command becomes the responsibility of
* this object, so don't pass the same instance of a command to two
* different objects */
// unsigned long AddObserver(const EventObject & event, Command *);
// unsigned long AddObserver(const EventObject & event, Command *) const;
/** Get the command associated with the given tag. NOTE: This returns
* a pointer to a Command, but it is safe to asign this to a
* Command::Pointer. Since Command inherits from LightObject, at this
* point in the code, only a pointer or a reference to the Command can
* be used. */
//Command* GetCommand(unsigned long tag);
/** Call Execute on all the Commands observing this event id. */
//void InvokeEvent( const EventObject & );
/** Call Execute on all the Commands observing this event id.
* The actions triggered by this call doesn't modify this object. */
//void InvokeEvent( const EventObject & ) const;
/** Remove the observer with this tag value. */
//void RemoveObserver(unsigned long tag);
/** Remove all observers . */
//void RemoveAllObservers();
/** Return true if an observer is registered for this event. */
//bool HasObserver( const EventObject & event ) const;
/**
* \return A reference to this objects MetaDataDictionary.
* \warning This reference may be changed.
*/
//MetaDataDictionary & GetMetaDataDictionary(void);
/**
* \return A constant reference to this objects MetaDataDictionary.
*/
//const MetaDataDictionary & GetMetaDataDictionary(void) const;
/**
* \return Set the MetaDataDictionary
*/
//void SetMetaDataDictionary(const MetaDataDictionary & rhs);
protected:
Object();
virtual ~Object();
/** Methods invoked by Print() to print information about the object
* including superclasses. Typically not called by the user (use Print()
* instead) but used in the hierarchical print process to combine the
* output of several classes. */
virtual void PrintSelf(std::ostream& os) const;
//bool PrintObservers(std::ostream& os) const;
private:
Object(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** Enable/Disable debug messages. */
mutable bool m_Debug;
/** Keep track of modification time. */
// mutable TimeStamp m_MTime;
/** Global object debug flag. */
static bool m_GlobalWarningDisplay;
/** Implementation class for Subject/Observer Pattern.
* This is only allocated if used. */
//SubjectImplementation* m_SubjectImplementation;
/**
* Implementation for holding Object MetaData
* @see igtl::MetaDataDictionary
* @see igtl::MetaDataObjectBase
* @see igtl::MetaDataObject
* This is only allocated if used.
*/
//mutable MetaDataDictionary * m_MetaDataDictionary;
};
} // end namespace igtl
#endif
|