Sophie

Sophie

distrib > Mandriva > 10.0 > i586 > media > contrib > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 714

libace5-doc-5.4-2mdk.i586.rpm

/* -*- C++ -*- */
// PCB.h,v 1.2 2004/01/03 22:31:20 shuston Exp

#if !defined(PCB_H)
#define PCB_H

// Listing 1 code/ch20
class PCB
{
public:
  PCB ();

  // Set/get the timer id that is being handled by this instance.
  void setID (long timerID);
  long getID (void) const;

  // Handle a timeout event, cancel, and close.
  virtual int handleEvent (const void *arg);
  virtual int handleCancel (void);
  virtual int handleClose (void);
 
private:
  long timerID_;
  int count_;
};
// Listing 1

#endif /*PCB_H*/