From 809b470ce90e53c532dfebc44c2e7c169c33402f Mon Sep 17 00:00:00 2001 From: Erwin Nindl Date: Fri, 7 Dec 2007 17:46:13 +0000 Subject: removed doxygen folders from svn --- doc/html/options_8cpp.html | 175 --------------------------------------------- 1 file changed, 175 deletions(-) delete mode 100644 doc/html/options_8cpp.html (limited to 'doc/html/options_8cpp.html') diff --git a/doc/html/options_8cpp.html b/doc/html/options_8cpp.html deleted file mode 100644 index 55dc4ca..0000000 --- a/doc/html/options_8cpp.html +++ /dev/null @@ -1,175 +0,0 @@ - - -anytun: options.cpp File Reference - - - - -
-
-
-
-

options.cpp File Reference

#include <iostream>
-#include <string>
-#include <sstream>
-#include "datatypes.h"
-#include "options.h"
- - - - - - - - - - - -

Defines

#define PARSE_BOOL_PARAM(SHORT, LONG, VALUE)
#define PARSE_INVERSE_BOOL_PARAM(SHORT, LONG, VALUE)
#define PARSE_SCALAR_PARAM(SHORT, LONG, VALUE)
#define PARSE_SCALAR_PARAM2(SHORT, LONG, VALUE1, VALUE2)
-

Define Documentation

- -
-
- - - - - - - - - - - - - - - -
#define PARSE_BOOL_PARAM (SHORT,
LONG,
VALUE   ) 
-
-
- -

-Value:

else if(str == SHORT || str == LONG)                 \
-      VALUE = true;
-
-
-

- -

-
- - - - - - - - - - - - - - - -
#define PARSE_INVERSE_BOOL_PARAM (SHORT,
LONG,
VALUE   ) 
-
-
- -

-Value:

else if(str == SHORT || str == LONG)                 \
-      VALUE = false;
-
-
-

- -

-
- - - - - - - - - - - - - - - -
#define PARSE_SCALAR_PARAM (SHORT,
LONG,
VALUE   ) 
-
-
- -

-Value:

else if(str == SHORT || str == LONG)                 \
-    {                                                    \
-      if(argc < 1 || argv[i+1][0] == '-')                \
-        return false;                                    \
-      std::stringstream tmp;                             \
-      tmp << argv[i+1];                                  \
-      tmp >> VALUE;                                      \
-      argc--;                                            \
-      i++;                                               \
-    }
-
-
-

- -

-
- - - - - - - - - - - - - - - - - - -
#define PARSE_SCALAR_PARAM2 (SHORT,
LONG,
VALUE1,
VALUE2   ) 
-
-
- -

-Value:

else if(str == SHORT || str == LONG)                 \
-    {                                                    \
-      if(argc < 2 ||                                     \
-         argv[i+1][0] == '-' || argv[i+2][0] == '-')     \
-        return false;                                    \
-      std::stringstream tmp;                             \
-      tmp << argv[i+1] << " " << argv[i+2];              \
-      tmp >> VALUE1;                                     \
-      tmp >> VALUE2;                                     \
-      argc-=2;                                           \
-      i+=2;                                              \
-    }
-
-
-

-


Generated on Mon Dec 3 11:49:25 2007 for anytun by  - -doxygen 1.5.1
- - -- cgit v1.2.3