From a7fd2b70a178ee8ac17d702d41ec51eecedfa3f8 Mon Sep 17 00:00:00 2001 From: bergamaschi Date: Thu, 15 Mar 2012 15:07:38 +0000 Subject: [PATCH] help line is not static any longer git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@397 951219d9-93cf-4727-9268-0efd64621fa3 --- .../slsDetectorClient/sls_detector_client.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slsDetectorSoftware/slsDetectorClient/sls_detector_client.cpp b/slsDetectorSoftware/slsDetectorClient/sls_detector_client.cpp index 7be931809..2991650da 100644 --- a/slsDetectorSoftware/slsDetectorClient/sls_detector_client.cpp +++ b/slsDetectorSoftware/slsDetectorClient/sls_detector_client.cpp @@ -78,7 +78,7 @@ int main(int argc, char *argv[]) } else { #ifdef GET cout << "Wrong usage - should be: "<< argv[0] << "[id:/id-]channel" << endl; - cout << slsDetectorCommand::helpLine(argc-1, argv, action); + // cout << slsDetectorCommand::helpLine(argc-1, argv, action); cout << endl; return -1; #endif @@ -86,7 +86,7 @@ int main(int argc, char *argv[]) #ifdef PUT if (argc<3) { cout << "Wrong usage - should be: "<< argv[0] << "[id:/id-]channel arg" << endl; - cout << slsDetectorCommand::helpLine(argc-1, argv+1, action); + // cout << slsDetectorCommand::helpLine(argc-1, argv+1, action); cout << endl; return -1; } @@ -101,7 +101,7 @@ int main(int argc, char *argv[]) #ifdef PUT if (argc<3) { cout << "Wrong usage - should be: "<< argv[0] <<" " << argv[1]<< " arg" << endl; - cout << slsDetectorCommand::helpLine(argc-1, argv+1, action); + //cout << slsDetectorCommand::helpLine(argc-1, argv+1, action); cout << endl; return -1; }