home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- // SAMPLE CODE
- //
- // FileName: ACDFSt5.cpp
- //
- // ClassName: ACompDocFwkMyStationery
- //
- // Description: This is the stationery class. The only reason the stationery
- // class is overridden is to override the createBundle class.
- // In the overridden createBundle a ACompDocFwkBundle type
- // class in created instead of the default IGUIBundle.
- ///////////////////////////////////////////////////////////////////////////////
- #include "acdfbd5.hpp"
- #include "acdfst5.hpp"
- #include "acdfmdl5.hpp"
- #include "acdfvw5.hpp"
-
- ACompDocFwkMyStationery::ACompDocFwkMyStationery()
- //Contsructor
- { IFUNCTRACE_DEVELOP();}
-
- ACompDocFwkMyStationery::~ACompDocFwkMyStationery()
- { IFUNCTRACE_DEVELOP();}
-
- IGUIBundle* ACompDocFwkMyStationery::createBundle() const
- // Override the create bundle method
- { IFUNCTRACE_DEVELOP();
- return new ACompDocFwkMyBundle();
- }
-
-