Include <iostream> without the .h on modern C++
[oweals/cde.git] / cde / programs / dtsearchpath / dtappg / Options.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: Options.C /main/2 1995/07/17 13:54:17 drk $ */
24 /*******************************************************************
25 **  (c) Copyright Hewlett-Packard Company, 1990, 1991, 1992, 1993.
26 **  All rights are reserved.  Copying or other reproduction of this
27 **  program except for archival purposes is prohibited without prior
28 **  written consent of Hewlett-Packard Company.
29 ********************************************************************
30 ****************************<+>*************************************/
31
32 #include "Options.h"
33 #include <stdlib.h>
34 #if defined(linux)
35 #include <iostream>
36 #else
37 #include <iostream.h>
38 #endif
39 #include <stdio.h>
40 #include <pwd.h>
41
42 /**************************************************************
43  *
44  * Two options are available for dtappgather:
45  *
46  *      -v      Verbose    - prints the Search Path environment
47  *                           variables to standard output.
48  *      -r      Retain     - Retain previous contents of the 
49  *                           Application Manager
50  *
51  **************************************************************/
52
53 Options::Options
54         (
55         unsigned int argc,
56         char **      argv
57         ) : flags(0)
58 {
59 CString Usage ("Usage: dtappgather [ -v | -r ]");
60
61     if (argc > 1) {
62         for (int i = 1; i < argc; i++) {
63             if (strcmp(argv[i],"-v") == 0)
64                 flags += 1;
65             else if (strcmp(argv[i],"-r") == 0)
66                 flags += 2;
67             else {
68                 fprintf(stderr,"%s\n",Usage.data());
69                 exit (1);
70             }
71         }
72     }
73 }
74