home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / iparentable.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-01-23  |  656 b   |  30 lines

  1. #ifndef K3DSDK_IPARENTABLE_H
  2. #define K3DSDK_IPARENTABLE_H
  3.  
  4. #include "iunknown.h"
  5.  
  6. namespace k3d
  7. {
  8.  
  9. class iproperty;
  10.  
  11. /// Abstract interface for an object that can be "parented" to another.  Note: parenting implies, but does not require, that the child's transformations be related to the parent's
  12. class iparentable :
  13.     public virtual iunknown
  14. {
  15. public:
  16.     /// Returns the object's parent, if any (could be NULL)
  17.     virtual iproperty& parent() = 0;
  18.     
  19. protected:
  20.     iparentable() {}
  21.     iparentable(const iparentable&) {}
  22.     iparentable& operator=(const iparentable&) { return *this; }
  23.     virtual ~iparentable() {}
  24. };
  25.  
  26. } // namespace k3d
  27.  
  28. #endif // !K3DSDK_IPARENTABLE_H
  29.  
  30.