www.pudn.com > Ftpwork > Monitor.h


#ifndef MONITOR_H_HEADER_INCLUDED_C24D910B
#define MONITOR_H_HEADER_INCLUDED_C24D910B
class String;
#include "String.h"

//##ModelId=3DB10B9D024D
class Monitor
{
  public:
    //##ModelId=3DB10DA301C5
    //##Documentation
    //## 支持分页显示。计算要显示的字符串中的换行的个数。
    void Display(String* ptextstr);
    void Display(const char*   ptext);

    //##ModelId=3DB117F8009C
    //##Documentation
    //## 设置指示器中的服务器IP部分。
    void SetIP(char* pip);
    //##ModelId=3DB227AC0371
    Monitor();


    //##ModelId=3DB227AC0399
 //   virtual ~Monitor(){};
    //##ModelId=3DB3AEFB0037
    //##Documentation
    //## 设置指示器中当前路径部分。
    void SetLocation(char* plocate);


    //##ModelId=3DB3B27B03E2
    //##Documentation
    //## 在新的一行显示指示器。
    void ShowIndicator();


   private:
   	String ipstr;
   	String locationstr;


};



#endif /* MONITOR_H_HEADER_INCLUDED_C24D910B */