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

Subversion Repositories w11

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

Compare with Previous | Blame | View Log

// $Id: RtclGetList.hpp 488 2013-02-16 18:49:47Z 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-02-12   487   1.0    Initial version
// ---------------------------------------------------------------------------
 
/*!
  \file
  \version $Id: RtclGetList.hpp 488 2013-02-16 18:49:47Z mueller $
  \brief   Declaration of class \c RtclGetList.
*/
 
#ifndef included_Retro_RtclGetList
#define included_Retro_RtclGetList 1
 
#include "tcl.h"
 
#include <cstdint>
#include <string>
#include <map>
 
#include "boost/utility.hpp"
#include "boost/function.hpp"
 
#include "RtclGet.hpp"
#include "librtcltools/RtclArgs.hpp"
 
namespace Retro {
 
  class RtclGetList : private boost::noncopyable {
    public:
                    RtclGetList();
      virtual      ~RtclGetList();
 
      void          Add(const std::string& name, RtclGetBase* pget);
 
      template <class TP>
      void          Add(const std::string& name, 
                        const boost::function<TP()>& get);
 
      int           M_get(RtclArgs& args);
 
    protected: 
 
 
    protected: 
      typedef std::map<std::string, RtclGetBase*> map_t;
      typedef map_t::iterator         map_it_t;
      typedef map_t::const_iterator   map_cit_t;
      typedef map_t::value_type       map_val_t;
 
      map_t         fMap;
  };
 
} // end namespace Retro
 
#include "RtclGetList.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.