summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Client.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-08-08 06:59:35 +0000
committerMichi Henning <michi@zeroc.com>2003-08-08 06:59:35 +0000
commit7225dff8fbdc167a06faeb0e9fd2c46d826748d8 (patch)
treedd7b5217baeacb13c88cac084ef96a3cb8c10c8d /cpp/src/IcePatch/Client.cpp
parentinfo on tests (diff)
downloadice-7225dff8fbdc167a06faeb0e9fd2c46d826748d8.tar.bz2
ice-7225dff8fbdc167a06faeb0e9fd2c46d826748d8.tar.xz
ice-7225dff8fbdc167a06faeb0e9fd2c46d826748d8.zip
Added Properties::parseIceCommandLineOptions().
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 2c80fbdba5b..ed819db4a79 100644
--- a/cpp/src/IcePatch/Client.cpp
+++ b/cpp/src/IcePatch/Client.cpp
@@ -583,21 +583,6 @@ IcePatch::Client::patch(const DirectoryDescPtr& dirDesc, const string& indent) c
int
main(int argc, char* argv[])
{
- PropertiesPtr defaultProperties;
- try
- {
- defaultProperties = getDefaultProperties(argc, argv);
- StringSeq args = argsToStringSeq(argc, argv);
- args = defaultProperties->parseCommandLineOptions("IcePatch", args);
- args = defaultProperties->parseCommandLineOptions("Glacier", args);
- stringSeqToArgs(args, argc, argv);
- }
- catch(const Exception& ex)
- {
- cerr << argv[0] << ": " << ex << endl;
- return EXIT_FAILURE;
- }
-
Client app;
return app.main(argc, argv);
}