// @(#)$Id: default_interfaces.lh,v 1.2 1997/01/10 23:49:22 leavens Exp $

class T {
public:
  // default interfaces for member functions when not explicitly declared.
  T() throw();                            // constructor
  T(const T& arg) throw();                // copy constructor
  ~T() throw();                           // destructor
  T& operator = (const T& from) throw();  // assignment operator
};

[Index]

HTML generated using lcpp2html.