home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / acdf5 / acdfst5.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1021 b   |  31 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //                      SAMPLE CODE
  3. //
  4. // FileName: ACDFSt5.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 "acdfbd5.hpp"
  14. #include "acdfst5.hpp"
  15. #include "acdfmdl5.hpp"
  16. #include "acdfvw5.hpp"
  17.  
  18. ACompDocFwkMyStationery::ACompDocFwkMyStationery()
  19. //Contsructor
  20. {   IFUNCTRACE_DEVELOP();}
  21.  
  22. ACompDocFwkMyStationery::~ACompDocFwkMyStationery()
  23. {   IFUNCTRACE_DEVELOP();}
  24.  
  25. IGUIBundle* ACompDocFwkMyStationery::createBundle() const
  26. // Override the create bundle method
  27. {   IFUNCTRACE_DEVELOP();
  28.     return new ACompDocFwkMyBundle();
  29. }
  30.  
  31.