home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / acdf4 / acdfst4.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1.0 KB  |  33 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //                      SAMPLE CODE
  3. //
  4. // FileName: ACDFSt4.cpp
  5. //
  6. // ClassName: ACompDocFwkMyStationery
  7. //
  8. // Description: This is the stationery class. The only reason the stationery
  9. //              class is overridden is to override the createBundle class.
  10. //              In the overridden createBundle a ACompDocFwkBundle type 
  11. //              class in created instead of the default IGUIBundle. 
  12. ///////////////////////////////////////////////////////////////////////////////
  13. #include "acdfbd4.hpp"
  14. #include "acdfst4.hpp"
  15. #include "acdfmdl4.hpp"
  16. #include "acdfvw4.hpp"
  17.  
  18. ACompDocFwkMyStationery::ACompDocFwkMyStationery() 
  19. // Constructor
  20. {   IFUNCTRACE_DEVELOP();}
  21.  
  22. ACompDocFwkMyStationery::~ACompDocFwkMyStationery()
  23. // Destructor
  24. {   IFUNCTRACE_DEVELOP();}
  25.  
  26. IGUIBundle* ACompDocFwkMyStationery::createBundle() const
  27. // Override the create bundle method
  28. {   IFUNCTRACE_DEVELOP();
  29.     return new ACompDocFwkMyBundle();
  30. }
  31.  
  32.     
  33.