1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-17 13:27:33 +00:00
Files
wfjm.w11/tools/src/librwxxtpp/RtclRw11UnitRHRP.cpp
2017-04-28 21:34:40 +02:00

58 lines
1.7 KiB
C++

// $Id: RtclRw11UnitRHRP.cpp 887 2017-04-28 19:32:52Z mueller $
//
// Copyright 2015-2017 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
// 2017-04-08 870 1.1 inherit from RtclRw11UnitBase
// 2015-05-14 680 1.0 Initial version
// 2015-03-21 659 0.1 First draft
// ---------------------------------------------------------------------------
/*!
\file
\brief Implemenation of RtclRw11UnitRHRP.
*/
#include "RtclRw11UnitRHRP.hpp"
using namespace std;
/*!
\class Retro::RtclRw11UnitRHRP
\brief FIXME_docs
*/
// all method definitions in namespace Retro
namespace Retro {
//------------------------------------------+-----------------------------------
//! Constructor
RtclRw11UnitRHRP::RtclRw11UnitRHRP(
Tcl_Interp* interp, const std::string& unitcmd,
const boost::shared_ptr<Rw11UnitRHRP>& spunit)
: RtclRw11UnitBase<Rw11UnitRHRP,Rw11UnitDisk,
RtclRw11UnitDisk>("Rw11UnitRHRP", spunit)
{
SetupGetSet();
CreateObjectCmd(interp, unitcmd.c_str());
}
//------------------------------------------+-----------------------------------
//! Destructor
RtclRw11UnitRHRP::~RtclRw11UnitRHRP()
{}
} // end namespace Retro