[ C++ RCOS Home | RCOS.java Home | RCOS Home | David's Home ]

RCOS C++ CRC for class Terminals

Name:

Terminals

Comment:

this class simplifies handling the display management of the simulated user terminals configured into the system.

Collaborators:

Responsibilities:

  class Terminals {
  private:
    UINT16 nTerm;
    tty  **pTerm;
    rect *pttyPos;
  public:
    Terminals (Knl*, UINT16);
   ~Terminals (void);
    void Paint (void);
    void Refresh (void);
    void Activate (void);
    void DeActivate (void);
    inline rect& GetPos (UINT16 n) { return pttyPos[n]; }
  };