diff options
Diffstat (limited to 'cpp/src/IceStorm/Parser.cpp')
-rw-r--r-- | cpp/src/IceStorm/Parser.cpp | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/cpp/src/IceStorm/Parser.cpp b/cpp/src/IceStorm/Parser.cpp index 7c1b767145d..f20818bff75 100644 --- a/cpp/src/IceStorm/Parser.cpp +++ b/cpp/src/IceStorm/Parser.cpp @@ -13,10 +13,6 @@ #include <IceStorm/WeightedGraph.h> #include <algorithm> -#ifdef GPL_BUILD -# include <IceGrid/GPL.h> -#endif - #ifdef HAVE_READLINE # include <readline/readline.h> # include <readline/history.h> @@ -54,11 +50,7 @@ Parser::usage() "unlink FROM TO Unlink TO from FROM.\n" "graph DATA COST Construct the link graph as described in DATA with COST\n" "list [TOPICS] Display information on TOPICS or all topics.\n" -#ifdef GPL_BUILD - "show copying Show conditions for redistributing copies of this program.\n" - "show warranty Show the warranty for this program.\n" -#endif - ; +; } void @@ -386,30 +378,19 @@ Parser::graph(const list<string>& _args) void Parser::showBanner() { - cout << "Ice " << ICE_STRING_VERSION << " Copyright 2003-2005 ZeroC, Inc." << endl; -#ifdef GPL_BUILD - cout << gplBanner << endl; -#endif + cout << "Ice " << ICE_STRING_VERSION << " Copyright 2003-2006 ZeroC, Inc." << endl; } void Parser::showCopying() { -#if defined(GPL_BUILD) - cout << gplCopying << endl; -#else - cout << "This command is not implemented yet." << endl; -#endif + cout << "This command is not implemented." << endl; } void Parser::showWarranty() { -#if defined(GPL_BUILD) - cout << gplWarranty << endl; -#else - cout << "This command is not implemented yet." << endl; -#endif + cout << "This command is not implemented." << endl; } void |