Add GNU LGPL headers to all .c .C and .h files
[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 #include <iostream.h>
35 #include <stdio.h>
36 #include <pwd.h>
37
38 /**************************************************************
39  *
40  * Two options are available for dtappgather:
41  *
42  *      -v      Verbose    - prints the Search Path environment
43  *                           variables to standard output.
44  *      -r      Retain     - Retain previous contents of the 
45  *                           Application Manager
46  *
47  **************************************************************/
48
49 Options::Options
50         (
51         unsigned int argc,
52         char **      argv
53         ) : flags(0)
54 {
55 CString Usage ("Usage: dtappgather [ -v | -r ]");
56
57     if (argc > 1) {
58         for (int i = 1; i < argc; i++) {
59             if (strcmp(argv[i],"-v") == 0)
60                 flags += 1;
61             else if (strcmp(argv[i],"-r") == 0)
62                 flags += 2;
63             else {
64                 fprintf(stderr,"%s\n",Usage.data());
65                 exit (1);
66             }
67         }
68     }
69 }
70