COVISE Core
XGetopt.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8// XGetopt.h Version 1.2
9//
10// Author: Hans Dietrich
11// hdietrich2@hotmail.com
12//
13// This software is released into the public domain.
14// You are free to use it in any way you like.
15//
16// This software is provided "as is" with no expressed
17// or implied warranty. I accept no liability for any
18// damage or loss of business that this software may cause.
19//
21
22#ifndef XGETOPT_H
23#define XGETOPT_H
24#include <tchar.h>
25#include "coExport.h"
26
27namespace covise
28{
29
31extern UTILEXPORT TCHAR *optarg;
32
33int UTILEXPORT getopt(int argc, TCHAR *argv[], TCHAR *optstring);
34}
35#endif //XGETOPT_H
#define UTILEXPORT
Definition: coExport.h:206
list of all chemical elements
Definition: coConfig.h:27
UTILEXPORT int opterr
Definition: XGetopt.h:30
int optind
Definition: XGetopt.cpp:164
TCHAR * optarg
Definition: XGetopt.cpp:163
int getopt(int argc, TCHAR *argv[], TCHAR *optstring)
Definition: XGetopt.cpp:166