// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #include #include #include #include #ifdef ICE_CPP11_MAPPING using namespace std; using namespace Ice; using namespace IceInternal; void Ice::Value::ice_preMarshal() { } void Ice::Value::ice_postUnmarshal() { } void Ice::Value::_iceWrite(Ice::OutputStream* os) const { os->startValue(0); _iceWriteImpl(os); os->endValue(); } void Ice::Value::_iceRead(Ice::InputStream* is) { is->startValue(); _iceReadImpl(is); is->endValue(false); } namespace { const string object_ids[] = { "::Ice::Object" }; } string Ice::Value::ice_id() const { return object_ids[0]; } const string& Ice::Value::ice_staticId() { return object_ids[0]; } ValuePtr Ice::Value::ice_clone() const { return cloneImpl(); } #endif