summaryrefslogtreecommitdiffstats
path: root/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx')
-rwxr-xr-xbindings/winrt/doubango_rt/src/rt_ActionConfig.cxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx b/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx
index 02f713e..b076eba 100755
--- a/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx
+++ b/bindings/winrt/doubango_rt/src/rt_ActionConfig.cxx
@@ -1,17 +1,17 @@
/*Copyright (C) 2013 Doubango Telecom <http://www.doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO 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 more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/
@@ -26,51 +26,51 @@ using namespace std;
rtActionConfig::rtActionConfig()
{
- m_pActionConfig = new ActionConfig();
+ m_pActionConfig = new ActionConfig();
}
rtActionConfig::~rtActionConfig()
{
- rtSafeDelete(m_pActionConfig);
+ rtSafeDelete(m_pActionConfig);
}
-
+
bool rtActionConfig::addHeader(String^ name, String^ value)
{
- return m_pActionConfig->addHeader(rtString::toUtf8(name).data(), rtString::toUtf8(value).data());
+ return m_pActionConfig->addHeader(rtString::toUtf8(name).data(), rtString::toUtf8(value).data());
}
bool rtActionConfig::setActiveMedia(rt_twrap_media_type_t type)
{
- return m_pActionConfig->setActiveMedia((twrap_media_type_t)type);
+ return m_pActionConfig->setActiveMedia((twrap_media_type_t)type);
}
#if COM_VISIBLE
bool rtActionConfig::addPayload(Platform::String^ payload)
{
- static std::vector<char> _payload = rtString::toUtf8(payload);
- return m_pActionConfig->addPayload(_payload.data(), _payload.size());
+ static std::vector<char> _payload = rtString::toUtf8(payload);
+ return m_pActionConfig->addPayload(_payload.data(), _payload.size());
}
#else
bool rtActionConfig::addPayload(IntPtr payload, unsigned len)
{
- return m_pActionConfig->addPayload((const void*)payload, len);
+ return m_pActionConfig->addPayload((const void*)payload, len);
}
#endif /* COM_VISIBLE */
-
+
rtActionConfig^ rtActionConfig::setResponseLine(short code, String^ phrase)
{
- m_pActionConfig->setResponseLine(code, rtString::toUtf8(phrase).data());
- return this;
+ m_pActionConfig->setResponseLine(code, rtString::toUtf8(phrase).data());
+ return this;
}
rtActionConfig^ rtActionConfig::setMediaString(rt_twrap_media_type_t type, String^ key, String^ value)
{
- m_pActionConfig->setMediaString((twrap_media_type_t)type, rtString::toUtf8(key).data(), rtString::toUtf8(value).data());
- return this;
+ m_pActionConfig->setMediaString((twrap_media_type_t)type, rtString::toUtf8(key).data(), rtString::toUtf8(value).data());
+ return this;
}
rtActionConfig^ rtActionConfig::setMediaInt(rt_twrap_media_type_t type, String^ key, int value)
{
- m_pActionConfig->setMediaInt((twrap_media_type_t)type, rtString::toUtf8(key).data(), value);
- return this;
+ m_pActionConfig->setMediaInt((twrap_media_type_t)type, rtString::toUtf8(key).data(), value);
+ return this;
} \ No newline at end of file
OpenPOWER on IntegriCloud