#ifndef Driver_H
#define Driver_H

class Driver:public virtual gov::cca::Component,
             public virtual gov::cca::GoPort
{
public:
  Driver ();
  ~
  Driver ();

  // GoPort interface:
  virtual int
  go ();

  // Component interface:
  virtual void
  setServices (gov::cca::Services * services);

private:
  gov::cca::Services *
    frameworkServices;
};

#endif // Driver_H