home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------------
- -- FILE NAME: WIZMODEL.HT
- --
- -- DESCRIPTION:
- -- OLE Compound Document Framework Model file template
- --
- -- COPYRIGHT:
- -- IBM WorkFrame - Project Smarts
- -- (C) Copyright International Business Machines Corporation 1996
- -- Licensed Material - Program-Property of IBM - All Rights Reserved.
- -- US Government Users Restricted Rights - Use, duplication, or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- --
- --------------------------------------------------------------------------------
- <include wizclass.ht>
- --
- --
- --------------------------------------------------------------------------------
- -- Model Class
- --------------------------------------------------------------------------------
- <code MODEL>
- <define FILE_HDR_INCLUDES>
- <if ($COMPONENT_TYPE$ == Server)>
- #include <imodel.hpp>
- <else>
- #include <iembmod.hpp>
- </if>
-
- </define>
- <define CLASS_NAME>$MODEL_CLASS_NAME$\</define>
- <define PROTECT_COPY>t\</define>
- $STREAMING$\<>
- <define PUBLIC_MEMBERS>
-
- /////////////////////////////////////////
- // ADD your public member functions here
- /////////////////////////////////////////
- </define>
- <define PRIVATE_MEMBERS>
-
- /////////////////////////////////////////
- // ADD your data members here
- /////////////////////////////////////////
-
- </define>
- </code MODEL>
-
- -----------------------------------
- -- Model direct descendent template
- -----------------------------------
- <code MODEL_DIRECT>
- <define CLASS_SUPERS>
- <if ($COMPONENT_TYPE$ == Server)>
- IModel\<>
- </if>
- <if ($COMPONENT_TYPE$ != Server)>
- IEmbedderModel\<>
- </if>
- </define>
- $MODEL$\<>
- </code MODEL_DIRECT>
-
- <code DATA_CLASS>
- </code>