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

Subversion Repositories w11

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

Compare with Previous | Blame | View Log

// $Id: RtclNameSet.hpp 521 2013-05-20 22:16:45Z mueller $
//
// Copyright 2011-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-05-19   521   1.1    add CheckMatch()
// 2011-02-20   363   1.0    Initial version
// ---------------------------------------------------------------------------
 
 
/*!
  \file
  \version $Id: RtclNameSet.hpp 521 2013-05-20 22:16:45Z mueller $
  \brief   Declaration of class RtclNameSet.
*/
 
#ifndef included_Retro_RtclNameSet
#define included_Retro_RtclNameSet 1
 
#include "tcl.h"
 
#include <string>
#include <set>
 
#include "RtclNameSet.hpp"
 
namespace Retro {
 
  class RtclNameSet {
    public:
      typedef std::set<std::string>   nset_t;
      typedef nset_t::iterator        nset_it_t;
      typedef nset_t::const_iterator  nset_cit_t;
 
                        RtclNameSet();
                        RtclNameSet(const std::string& nset);
                       ~RtclNameSet();
 
    bool                Check(Tcl_Interp* interp, std::string& rval, 
                              const std::string& tval) const;
    int                 CheckMatch(Tcl_Interp* interp, std::string& rval, 
                                   const std::string& tval, bool misserr) const;
 
    protected:  
      nset_t            fSet;
  };
 
} // end namespace Retro
 
//#include "RtclNameSet.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.