home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / Graphics3D / Sources / Content.cpp < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.6 KB  |  60 lines  |  [TEXT/CWIE]

  1. //    Release Version:    $ ODF 1 $
  2. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  3.  
  4. //========================================================================================
  5. #include "Graphics3D.hpp"
  6.  
  7. #ifndef CONTENT_H
  8. #include "Content.h"
  9. #endif
  10.  
  11. #ifndef PART_H
  12. #include "Part.h"
  13. #endif
  14.  
  15. #ifndef FWUTIL_H
  16. #include "FWUtil.h"
  17. #endif
  18.  
  19. //========================================================================================
  20. #ifdef FW_BUILD_MAC
  21. #pragma segment Graphics3D
  22. #endif
  23.  
  24. //========================================================================================
  25. FW_DEFINE_AUTO(CGraphics3DContent)
  26.  
  27. //----------------------------------------------------------------------------------------
  28. CGraphics3DContent::CGraphics3DContent(Environment* ev, CGraphics3DPart* part)
  29.     : FW_CContent(ev, part)
  30. {
  31. }
  32.  
  33. //----------------------------------------------------------------------------------------
  34. CGraphics3DContent::~CGraphics3DContent()
  35. {
  36. }
  37.  
  38. //----------------------------------------------------------------------------------------
  39. void 
  40. CGraphics3DContent::Externalize(Environment* ev,
  41.                                  ODStorageUnit* storageUnit,
  42.                                  FW_EStorageKinds storageKind,
  43.                                  FW_CCloneInfo* cloneInfo)
  44. {
  45.     FW_UNUSED(cloneInfo);
  46. }
  47.  
  48. //----------------------------------------------------------------------------------------
  49. FW_Boolean 
  50. CGraphics3DContent::Internalize(Environment* ev,
  51.                              ODStorageUnit* sourceSU, 
  52.                              FW_EStorageKinds storageKind,
  53.                              FW_CCloneInfo* cloneInfo)
  54. {
  55.     FW_UNUSED(cloneInfo);
  56.     FW_Boolean internalized = false;
  57.     return internalized;
  58. }
  59.  
  60.