[openrtm-commit:00025] r2078 - trunk/OpenRTM-aist/src/lib/rtm
openrtm at openrtm.org
openrtm at openrtm.org
Fri Apr 29 21:51:07 JST 2011
Author: n-ando
Date: 2011-04-29 21:51:07 +0900 (Fri, 29 Apr 2011)
New Revision: 2078
Modified:
trunk/OpenRTM-aist/src/lib/rtm/RTObject.h
Log:
Documents for functors "ec_copy, ec_find" has been updated. refs #1128
Modified: trunk/OpenRTM-aist/src/lib/rtm/RTObject.h
===================================================================
--- trunk/OpenRTM-aist/src/lib/rtm/RTObject.h 2011-04-29 12:43:34 UTC (rev 2077)
+++ trunk/OpenRTM-aist/src/lib/rtm/RTObject.h 2011-04-29 12:51:07 UTC (rev 2078)
@@ -4490,9 +4490,9 @@
/*!
* @if jp
- * @brief ExecutionContext ¸¡º÷ÍÑ¥Õ¥¡¥ó¥¯¥¿
+ * @brief ExecutionContext ¥³¥Ô¡¼¥Õ¥¡¥ó¥¯¥¿
* @else
- * @brief Functor to find ExecutionContext
+ * @brief Functor to copy ExecutionContext
* @endif
*/
struct ec_copy
@@ -4505,12 +4505,19 @@
{
if (!::CORBA::is_nil(ecs))
{
- CORBA_SeqUtil::push_back(m_eclist, ExecutionContext::_duplicate(ecs));
+ CORBA_SeqUtil::push_back(m_eclist,
+ ExecutionContext::_duplicate(ecs));
}
}
ExecutionContextList& m_eclist;
}; // struct ec_copy
-
+ /*!
+ * @if jp
+ * @brief ExecutionContext ¸¡º÷ÍÑ¥Õ¥¡¥ó¥¯¥¿
+ * @else
+ * @brief Functor to find ExecutionContext
+ * @endif
+ */
struct ec_find
{
ec_find(ExecutionContext_ptr& ec)
More information about the openrtm-commit
mailing list