realroot_doc 0.1.1
/Users/mourrain/Devel/mmx/realroot/include/realroot/method_base.hpp
Go to the documentation of this file.
00001 /********************************************************************
00002  *   This file is part of the source code of the realroot library.
00003  *   Author(s): J.P. Pavone, GALAAD, INRIA
00004  *   $Id: method_base.hpp,v 1.1 2005/07/11 10:03:55 jppavone Exp $
00005  ********************************************************************/
00006 #ifndef realroot_SOLVE_SBDSLV_METHOD_BASE_HPP
00007 #define realroot_SOLVE_SBDSLV_METHOD_BASE_HPP
00008 //--------------------------------------------------------------------
00009 namespace mmx {
00010 //--------------------------------------------------------------------
00011 namespace realroot
00012 {
00013   /* interface system -> methode */
00014   struct method_base
00015   { 
00016     virtual void error( const char * ) = 0;
00017     virtual void accept() = 0;
00018     virtual ~method_base() {};
00019   };
00020 }
00021 //--------------------------------------------------------------------
00022 } //namespace mmx
00023 /********************************************************************/
00024 #endif //