home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / mfcclswz.dll / SRCDATA / CMDTARG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-12  |  1003 b   |  52 lines

  1.  
  2.  
  3. /////////////////////////////////////////////////////////////////////////////
  4. // %1 command target
  5.  
  6. class %1 : public CCmdTarget
  7. {
  8.     DECLARE_DYNCREATE(%1)
  9.  
  10.     %1();           // protected constructor used by dynamic creation
  11.  
  12. // Attributes
  13. public:
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(%1)
  21. $$IF(OLEAUTO)
  22.     public:
  23.     virtual void OnFinalRelease();
  24. $$ENDIF
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     virtual ~%1();
  30.  
  31.     // Generated message map functions
  32.     //{{AFX_MSG(%1)
  33.         // NOTE - the ClassWizard will add and remove member functions here.
  34.     //}}AFX_MSG
  35.  
  36.     DECLARE_MESSAGE_MAP()
  37. $$IF(OLECREATE)
  38.     DECLARE_OLECREATE(%1)
  39.  
  40. $$ENDIF
  41. $$IF(OLEAUTO)
  42.     // Generated OLE dispatch map functions
  43.     //{{AFX_DISPATCH(%1)
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.     //}}AFX_DISPATCH
  46.     DECLARE_DISPATCH_MAP()
  47.     DECLARE_INTERFACE_MAP()
  48. $$ENDIF()
  49. };
  50.  
  51. /////////////////////////////////////////////////////////////////////////////