home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- // SAMPLE CODE
- //
- // FileName: ACDFSt4.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 "acdfbd4.hpp"
- #include "acdfst4.hpp"
- #include "acdfmdl4.hpp"
- #include "acdfvw4.hpp"
-
- ACompDocFwkMyStationery::ACompDocFwkMyStationery()
- // Constructor
- { IFUNCTRACE_DEVELOP();}
-
- ACompDocFwkMyStationery::~ACompDocFwkMyStationery()
- // Destructor
- { IFUNCTRACE_DEVELOP();}
-
- IGUIBundle* ACompDocFwkMyStationery::createBundle() const
- // Override the create bundle method
- { IFUNCTRACE_DEVELOP();
- return new ACompDocFwkMyBundle();
- }
-
-
-