OpenCores
URL https://opencores.org/ocsvn/w11/w11/trunk

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.6/] [tools/] [src/] [librtcltools/] [RtclCmdBase.hpp] - Rev 24

Compare with Previous | Blame | View Log

// $Id: RtclCmdBase.hpp 511 2013-04-27 13:51:46Z mueller $
//
// Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// This program is free software; you may redistribute and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation, either version 2, or at your option any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for complete details.
// 
// Revision History: 
// Date         Rev Version  Comment
// 2013-04-26   511   1.0.1  AddMeth() now public
// 2013-02-02   480   1.0    Initial version (refactored out from ProxyBase)
// ---------------------------------------------------------------------------
 
/*!
  \file
  \version $Id: RtclCmdBase.hpp 511 2013-04-27 13:51:46Z mueller $
  \brief   Declaration of class RtclCmdBase.
*/
 
#ifndef included_Retro_RtclCmdBase
#define included_Retro_RtclCmdBase 1
 
#include "tcl.h"
 
#include <string>
#include <map>
 
#include "boost/utility.hpp"
#include "boost/function.hpp"
 
#include "RtclArgs.hpp"
 
namespace Retro {
 
  class RtclCmdBase : private boost::noncopyable {
    public:
      typedef boost::function<int(RtclArgs&)> methfo_t;
 
      typedef std::map<std::string, methfo_t> mmap_t;
      typedef mmap_t::iterator         mmap_it_t;
      typedef mmap_t::const_iterator   mmap_cit_t;
      typedef mmap_t::value_type       mmap_val_t;
 
                    RtclCmdBase();
      virtual      ~RtclCmdBase();
 
      int           DispatchCmd(RtclArgs& args);
      void          AddMeth(const std::string& name, const methfo_t& methfo);
 
    // some constants (also defined in cpp)
      static const int kOK  = TCL_OK;       //<!
      static const int kERR = TCL_ERROR;    //<!
 
    protected:
 
    protected:
      mmap_t        fMapMeth;               //!< map for named methods
  };
 
} // end namespace Retro
 
//#include "RtclCmdBase.ipp"
 
#endif
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.