[openrtm-commit:03127] r3195 - branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm
openrtm @ openrtm.org
openrtm @ openrtm.org
2018年 1月 24日 (水) 08:49:03 JST
Author: miyamoto
Date: 2018-01-24 08:49:03 +0900 (Wed, 24 Jan 2018)
New Revision: 3195
Modified:
branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/InPortConnector.h
branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/OutPortConnector.h
Log:
[compat, ->RELENG_1_2] refs #4428
Modified: branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/InPortConnector.h
===================================================================
--- branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/InPortConnector.h 2018-01-23 10:20:54 UTC (rev 3194)
+++ branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/InPortConnector.h 2018-01-23 23:49:03 UTC (rev 3195)
@@ -23,11 +23,12 @@
#include <rtm/ConnectorListener.h>
#include <rtm/ConnectorBase.h>
#include <rtm/DirectOutPortBase.h>
+#include <rtm/PortBase.h>
namespace RTC
{
- class OutPortBase;
+ class OutPortBase;
/*!
* @if jp
* @class InPortConnector
@@ -351,7 +352,7 @@
* @brief OutProt pointer to the peer in the same process
* @endif
*/
- OutPortBase* m_directOutPort;
+ PortBase* m_directOutPort;
};
}; // namespace RTC
Modified: branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/OutPortConnector.h
===================================================================
--- branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/OutPortConnector.h 2018-01-23 10:20:54 UTC (rev 3194)
+++ branches/RELENG_1_2/OpenRTM-aist/src/lib/rtm/OutPortConnector.h 2018-01-23 23:49:03 UTC (rev 3195)
@@ -24,12 +24,13 @@
#include <rtm/ConnectorBase.h>
#include <rtm/ConnectorListener.h>
#include <rtm/DirectInPortBase.h>
+#include <rtm/PortBase.h>
namespace RTC
{
- class InPortBase;
+ class InPortBase;
/*!
* @if jp
* @class OutPortConnector
@@ -324,7 +325,7 @@
* @brief InProt pointer to the peer in the same process
* @endif
*/
- InPortBase* m_directInPort;
+ PortBase* m_directInPort;
/*!
* @if jp
More information about the openrtm-commit
mailing list