home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / FWContng.cpp < prev    next >
Encoding:
Text File  |  1996-09-17  |  2.2 KB  |  69 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWContng.cpp
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWFrameW.hpp"
  11.  
  12. #ifndef FWCONTNG_H
  13. #include "FWContng.h"
  14. #endif
  15.  
  16. #ifndef FWDEBUG_H
  17. #include "FWDebug.h"
  18. #endif
  19.  
  20. //========================================================================================
  21. // RunTime Info
  22. //========================================================================================
  23.  
  24. #ifdef FW_BUILD_MAC
  25. #pragma segment fw_embedding2
  26. #endif
  27.  
  28. //========================================================================================
  29. //    class FW_CEmbeddingContent
  30. //========================================================================================
  31.  
  32. //----------------------------------------------------------------------------------------
  33. //    FW_CEmbeddingContent constructor
  34. //----------------------------------------------------------------------------------------
  35. FW_CEmbeddingContent::FW_CEmbeddingContent(Environment* ev, FW_CPart* part) :
  36.     FW_CContent(ev, part)
  37. {
  38. }
  39.  
  40. //----------------------------------------------------------------------------------------
  41. //    FW_CEmbeddingContent destructor
  42. //----------------------------------------------------------------------------------------
  43.  
  44. FW_CEmbeddingContent::~FW_CEmbeddingContent()
  45. {
  46. }
  47.  
  48. //----------------------------------------------------------------------------------------
  49. //    FW_CEmbeddingContent::SingleEmbeddedFrameInternalized
  50. //----------------------------------------------------------------------------------------
  51.  
  52. void FW_CEmbeddingContent::SingleEmbeddedFrameInternalized(Environment* ev,
  53.                                                         FW_CEmbeddingFrame* scopeFrame,
  54.                                                         ODPart* odEmbeddedPart, 
  55.                                                         ODFrame* odEmbeddedFrame,
  56.                                                         ODShape* suggestedShape,
  57.                                                         ODTypeToken viewType)
  58. {
  59. FW_UNUSED(ev);
  60. FW_UNUSED(scopeFrame);
  61. FW_UNUSED(odEmbeddedPart);
  62. FW_UNUSED(odEmbeddedFrame);
  63. FW_UNUSED(suggestedShape);
  64. FW_UNUSED(viewType);
  65.     FW_DEBUG_MESSAGE("You should have overridden FW_CEmbeddingContent::SingleEmbeddedFrameInternalized");
  66. }
  67.  
  68.  
  69.