mirror of
https://github.com/wfjm/w11.git
synced 2026-04-06 06:12:40 +00:00
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// $Id: RlinkAddrMap.ipp 887 2017-04-28 19:32:52Z mueller $
|
|
//
|
|
// Copyright 2011- 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
|
|
// 2011-03-05 366 1.0 Initial version
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/*!
|
|
\file
|
|
\brief Implemenation (inline) of class RlinkAddrMap.
|
|
*/
|
|
|
|
// all method definitions in namespace Retro
|
|
namespace Retro {
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! FIXME_docs
|
|
|
|
inline const RlinkAddrMap::nmap_t& RlinkAddrMap::Nmap() const
|
|
{
|
|
return fNameMap;
|
|
}
|
|
|
|
//------------------------------------------+-----------------------------------
|
|
//! FIXME_docs
|
|
|
|
inline const RlinkAddrMap::amap_t& RlinkAddrMap::Amap() const
|
|
{
|
|
return fAddrMap;
|
|
}
|
|
|
|
} // end namespace Retro
|