// libcell interface -*-c++-*- class Exc { public: Exc(const char *m); const char *msg; }; class Cell { public: Cell(int); ~Cell(); void set(int); int get(); private: int val; }; extern Cell global_cell;