~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to include/Ice/Stream.h

  • Committer: Bazaar Package Importer
  • Author(s): Francisco Moya
  • Date: 2006-08-06 19:00:57 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060806190057-3q4p9ws4ucyamn10
Tags: 3.1.0-2
* Patches #5 to #6 from ZeroC forums.
* Patch by Michael Pugach for DescriptorHelper.cpp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
59
59
    virtual ::std::string readString() = 0;
60
60
    virtual ::std::vector< ::std::string > readStringSeq() = 0;
61
61
 
 
62
    virtual ::std::wstring readWstring() = 0;
 
63
    virtual ::std::vector< ::std::wstring > readWstringSeq() = 0;
 
64
 
62
65
    virtual ::Ice::Int readSize() = 0;
63
66
 
64
67
    virtual ::Ice::ObjectPrx readProxy() = 0;
109
112
    virtual void writeString(const ::std::string&) = 0;
110
113
    virtual void writeStringSeq(const ::std::vector< ::std::string >&) = 0;
111
114
 
 
115
    virtual void writeWstring(const ::std::wstring&) = 0;
 
116
    virtual void writeWstringSeq(const ::std::vector< ::std::wstring >&) = 0;
 
117
 
112
118
    virtual void writeSize(::Ice::Int) = 0;
113
119
 
114
120
    virtual void writeProxy(const ::Ice::ObjectPrx&) = 0;