/* Handle.h */

#ifndef HANDLE_H
#define HANDLE_H


class Handle {
  struct Cheshire;       // Class declaration only
  Cheshire *smile;

public:
  void initialize();
  void cleanup();
  int read();
  void change(int);
};


#endif
