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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.7/] [tools/] [src/] [librlink/] [RlinkChannel.hpp] - Rev 33

Compare with Previous | Blame | View Log

// $Id: RlinkChannel.hpp 492 2013-02-24 22:14: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-23   492   1.0    Initial version
// ---------------------------------------------------------------------------
 
 
/*!
  \file
  \version $Id: RlinkChannel.hpp 492 2013-02-24 22:14:47Z mueller $
  \brief   Declaration of class RlinkChannel.
*/
 
#ifndef included_Retro_RlinkChannel
#define included_Retro_RlinkChannel 1
 
#include "boost/shared_ptr.hpp"
 
#include "RlinkContext.hpp"
#include "RlinkConnect.hpp"
#include "RlinkCommandList.hpp"
 
namespace Retro {
 
  class RlinkChannel {
    public:
      explicit      RlinkChannel(const boost::shared_ptr<RlinkConnect>& spconn);
                   ~RlinkChannel();
 
      RlinkConnect& Connect();
      RlinkContext& Context();
 
      bool          Exec(RlinkCommandList& clist, RerrMsg& emsg);
 
      void          Dump(std::ostream& os, int ind=0, const char* text=0) const;
 
    protected: 
      RlinkContext  fContext;               //!< stat check and errcnt context
      boost::shared_ptr<RlinkConnect> fspConn; //!< ptr to connect
  };
 
} // end namespace Retro
 
#include "RlinkChannel.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.