Go to the source code of this file.
      
        
          | #define VTK_SMART_POINTER_BASE_DEFINE_OPERATOR | ( |  | op | ) |  | 
      
 
Value:inline bool \
    { \
    return (static_cast<void*>(l.GetPointer()) op \
            static_cast<void*>(r.GetPointer())); \
    } \
  inline bool \
    { \
    return (static_cast<void*>(l) op static_cast<void*>(r.GetPointer())); \
    } \
  inline bool \
    { \
    return (static_cast<void*>(l.GetPointer()) op static_cast<void*>(r)); \
    }
abstract base class for most VTK objects 
Non-templated superclass for vtkSmartPointer. 
Definition at line 85 of file vtkSmartPointerBase.h.
 
 
Compare smart pointer values.
Streaming operator to print smart pointer like regular pointers.