summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-04 23:27:53 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-04 23:27:53 +0000
commit02c08804ed182eb0b2004e926d08bd814c6a40aa (patch)
tree09f49229742c6478e6edf9994b388f6a4e7e2311 /cpp/src/IcePatch/Client.cpp
parentmore IcePatch stuff (diff)
downloadice-02c08804ed182eb0b2004e926d08bd814c6a40aa.tar.bz2
ice-02c08804ed182eb0b2004e926d08bd814c6a40aa.tar.xz
ice-02c08804ed182eb0b2004e926d08bd814c6a40aa.zip
more IcePatch stuff
Diffstat (limited to 'cpp/src/IcePatch/Client.cpp')
-rw-r--r--cpp/src/IcePatch/Client.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp
index 5fdda3c010d..f4541e52a6c 100644
--- a/cpp/src/IcePatch/Client.cpp
+++ b/cpp/src/IcePatch/Client.cpp
@@ -26,7 +26,6 @@ public:
void usage();
virtual int run(int, char*[]);
void printNodeDescSeq(const NodeDescSeq&, const string&);
- void getFile(const FilePrx&);
};
};
@@ -259,20 +258,6 @@ IcePatch::Client::printNodeDescSeq(const NodeDescSeq& nodeDescSeq, const string&
}
}
-void
-IcePatch::Client::getFile(const FilePrx& file)
-{
- ByteSeq bytes;
- Int pos = 0;
-
- do
- {
- bytes = file->getBytesBZ2(pos, 256 * 1024);
- pos += bytes.size();
- }
- while (!bytes.empty());
-}
-
int
main(int argc, char* argv[])
{