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

  1. #ifndef __PROJECT2_H_
  2. #define __PROJECT2_H_
  3.  
  4. #include <ideaddon\iproj.h>
  5.  
  6. #include "tests.h"
  7.  
  8. /*-----------------------------------------------------------------------*/
  9.  
  10. class ProjectTestB : public TestObject
  11. {
  12.     public:
  13.        ProjectTestB();
  14.        ~ProjectTestB();
  15.  
  16.        //TestObject Interface implementation
  17.        virtual BOOL Init();
  18.        virtual void UnInit();
  19.        virtual const char* GetName();
  20.        virtual const char* GetTestDescription(int testNum);
  21.        virtual void DoTest(int testNum);
  22.  
  23.     protected:   
  24.        void MoveNode();
  25.        void CopyNode();
  26.        void SwapTranslator();
  27.        void MarkDirty();
  28.  
  29.        IProjectServer3* prjServer;
  30. };
  31.  
  32.  
  33. /*-----------------------------------------------------------------------*/
  34.  
  35.  
  36. #endif // __PROJECT2_H_
  37.