From 7ddc5514d28126cbb7d2319799af7cff18c63e32 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Fri, 1 Apr 2005 16:24:32 +0000 Subject: Removed dynamic ice --- cpp/src/slice2cppe/Main.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'cpp/src/slice2cppe/Main.cpp') diff --git a/cpp/src/slice2cppe/Main.cpp b/cpp/src/slice2cppe/Main.cpp index 7bcebe1b172..87a5f82ebfd 100644 --- a/cpp/src/slice2cppe/Main.cpp +++ b/cpp/src/slice2cppe/Main.cpp @@ -37,7 +37,6 @@ usage(const char* n) "-d, --debug Print debug messages.\n" "--ice Permit `Ice' prefix (for building Ice source code only)\n" "--checksum Generate checksums for Slice definitions.\n" - "--stream Generate marshaling support for public stream API.\n" ; // Note: --case-sensitive is intentionally not shown here! } @@ -56,7 +55,6 @@ main(int argc, char* argv[]) bool debug; bool ice; bool checksum; - bool stream; bool caseSensitive; IceUtil::Options opts; @@ -76,7 +74,6 @@ main(int argc, char* argv[]) opts.addOpt("d", "debug"); opts.addOpt("", "ice"); opts.addOpt("", "checksum"); - opts.addOpt("", "stream"); opts.addOpt("", "case-sensitive"); vector args; @@ -147,7 +144,6 @@ main(int argc, char* argv[]) debug = opts.isSet("d") || opts.isSet("debug"); ice = opts.isSet("ice"); checksum = opts.isSet("checksum"); - stream = opts.isSet("stream"); caseSensitive = opts.isSet("case-sensitive"); if(args.empty()) @@ -208,7 +204,7 @@ main(int argc, char* argv[]) else { Gen gen(argv[0], icecpp.getBaseName(), headerExtension, sourceExtension, include, - includePaths, dllExport, output, impl, checksum, stream); + includePaths, dllExport, output, impl, checksum); if(!gen) { u->destroy(); -- cgit v1.2.3