1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-12 11:17:37 +00:00

code cosmetics

This commit is contained in:
Walter F.J. Mueller
2017-04-02 19:23:02 +02:00
parent 79c565f6f3
commit 3de030a0dd
5 changed files with 31 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
// $Id: RtclContext.cpp 492 2013-02-24 22:14:47Z mueller $
// $Id: RtclContext.cpp 866 2017-04-02 17:20:13Z mueller $
//
// Copyright 2011-2013 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
// Copyright 2011-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
@@ -13,6 +13,7 @@
//
// Revision History:
// Date Rev Version Comment
// 2017-02-04 866 1.0.4 rename fMapContext -> fContextMap
// 2013-02-03 481 1.0.3 use Rexception
// 2013-01-12 474 1.0.2 add FindProxy() method
// 2011-03-12 368 1.0.1 drop fExitSeen, get exit handling right
@@ -22,7 +23,7 @@
/*!
\file
\version $Id: RtclContext.cpp 492 2013-02-24 22:14:47Z mueller $
\version $Id: RtclContext.cpp 866 2017-04-02 17:20:13Z mueller $
\brief Implemenation of RtclContext.
*/
@@ -45,7 +46,7 @@ namespace Retro {
typedef std::pair<RtclContext::cset_it_t, bool> cset_ins_t;
typedef std::pair<RtclContext::pset_it_t, bool> pset_ins_t;
RtclContext::xmap_t RtclContext::fMapContext;
RtclContext::xmap_t RtclContext::fContextMap;
//------------------------------------------+-----------------------------------
//! Default constructor
@@ -159,12 +160,12 @@ RtclProxyBase* RtclContext::FindProxy(const std::string& type,
RtclContext& RtclContext::Find(Tcl_Interp* interp)
{
RtclContext* pcntx = 0;
xmap_it_t it = fMapContext.find(interp);
if (it != fMapContext.end()) {
xmap_it_t it = fContextMap.find(interp);
if (it != fContextMap.end()) {
pcntx = it->second;
} else {
pcntx = new RtclContext(interp);
fMapContext.insert(xmap_val_t(interp, pcntx));
fContextMap.insert(xmap_val_t(interp, pcntx));
Tcl_CreateExitHandler((Tcl_ExitProc*) ThunkTclExitProc, (ClientData) pcntx);
}

View File

@@ -1,6 +1,6 @@
// $Id: RtclContext.hpp 490 2013-02-22 18:43:26Z mueller $
// $Id: RtclContext.hpp 866 2017-04-02 17:20:13Z mueller $
//
// Copyright 2011-2013 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
// Copyright 2011-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
@@ -13,6 +13,7 @@
//
// Revision History:
// Date Rev Version Comment
// 2017-02-04 866 1.0.4 rename fMapContext -> fContextMap
// 2013-01-12 474 1.0.3 add FindProxy() method
// 2011-04-24 380 1.0.2 use boost::noncopyable (instead of private dcl's)
// 2011-03-12 368 1.0.1 drop fExitSeen, get exit handling right
@@ -22,7 +23,7 @@
/*!
\file
\version $Id: RtclContext.hpp 490 2013-02-22 18:43:26Z mueller $
\version $Id: RtclContext.hpp 866 2017-04-02 17:20:13Z mueller $
\brief Declaration of class RtclContext.
*/
@@ -78,7 +79,7 @@ namespace Retro {
cset_t fSetClass; //!< set for Class objects
pset_t fSetProxy; //!< set for Proxy objects
static xmap_t fMapContext; //!< map of contexts
static xmap_t fContextMap; //!< map of contexts
};
} // end namespace Retro