home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / ADDON.PAK / MSGTEST2.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  536 b   |  29 lines

  1. #ifndef __MSGTEST2_H_
  2. #define __MSGTEST2_H_
  3.  
  4.  
  5. #include "tests.h"
  6.  
  7.  
  8. class MsgTest : public TestObject
  9. {
  10.    public:
  11.      MsgTest();
  12.      ~MsgTest();
  13.  
  14.      //TestObject Interface implementation
  15.      virtual BOOL Init();
  16.      virtual void UnInit();
  17.      virtual const char* GetName();
  18.      virtual const char* GetTestDescription(int testNum);
  19.      virtual void DoTest(int testNum);
  20.  
  21.    protected: 
  22.      IMessageFolder* folder;
  23.      IMessageFolder2* folder2;
  24.      HMSGITEM parentMsg;
  25. };
  26.  
  27.  
  28. #endif // __MSGTEST2_H_
  29.