// testdll3.h  (-*- C++ -*-)

class vio
{
public:
  vio ();
  vio (const char *msg);
  ~vio ();
  void write (const char *s);
private:
  const char *txt;
};
