Developer documentation

method_base.hpp
Go to the documentation of this file.
1 /********************************************************************
2  * This file is part of the source code of the realroot library.
3  * Author(s): J.P. Pavone, GALAAD, INRIA
4  * $Id: method_base.hpp,v 1.1 2005/07/11 10:03:55 jppavone Exp $
5  ********************************************************************/
6 #ifndef realroot_SOLVE_SBDSLV_METHOD_BASE_HPP
7 #define realroot_SOLVE_SBDSLV_METHOD_BASE_HPP
8 //--------------------------------------------------------------------
9 namespace mmx {
10 //--------------------------------------------------------------------
11 namespace realroot
12 {
13  /* interface system -> methode */
14  struct method_base
15  {
16  virtual void error( const char * ) = 0;
17  virtual void accept() = 0;
18  virtual ~method_base() {};
19  };
20 }
21 //--------------------------------------------------------------------
22 } //namespace mmx
23 /********************************************************************/
24 #endif //
virtual void accept()=0
virtual ~method_base()
Definition: method_base.hpp:18
Definition: array.hpp:12
Definition: method_base.hpp:14
virtual void error(const char *)=0
Home