mirror of
https://github.com/wfjm/w11.git
synced 2026-02-08 01:21:59 +00:00
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
// $Id: RtclRw11UnitRHRP.cpp 680 2015-05-14 13:29:46Z mueller $
|
|
//
|
|
// Copyright 2015- 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
|
|
// 2015-05-14 680 1.0 Initial version
|
|
// 2015-03-21 659 0.1 First draft
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/*!
|
|
\file
|
|
\version $Id: RtclRw11UnitRHRP.cpp 680 2015-05-14 13:29:46Z mueller $
|
|
\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>("Rw11UnitRHRP", spunit),
|
|
RtclRw11UnitDisk(this, spunit.get())
|
|
{
|
|
CreateObjectCmd(interp, unitcmd.c_str());
|
|
}
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! Destructor
|
|
|
|
RtclRw11UnitRHRP::~RtclRw11UnitRHRP()
|
|
{}
|
|
|
|
} // end namespace Retro
|