EasyLocalpp  3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parameters.h File Reference
#include <cstdio>
#include <iostream>
#include <fstream>
#include <map>
#include <string.h>
#include "easylocal/utils/Definitions.h"
Include dependency graph for Parameters.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  boolParam
 
struct  ShortintParam
 
struct  IntParam
 
struct  LongintParam
 
struct  RealParam
 
struct  CharParam
 
struct  StringParam
 
struct  Param
 
struct  strCmp
 
class  Parameters
 

Typedefs

typedef enum ParamType PARAMTYPE
 
typedef struct Param PARAM
 
typedef struct ParamData PARAMDATA
 
typedef struct boolParam BOOLPARAM
 
typedef struct ShortintParam SHORTINTPARAM
 
typedef struct IntParam INTPARAM
 
typedef struct LongintParam LONGINTPARAM
 
typedef struct RealParam REALPARAM
 
typedef struct CharParam CHARPARAM
 
typedef struct StringParam STRINGPARAM
 

Enumerations

enum  ParamType {
  PARAMTYPE_BOOL = 0, PARAMTYPE_INT = 1, PARAMTYPE_LONGINT = 2, PARAMTYPE_REAL = 3,
  PARAMTYPE_CHAR = 4, PARAMTYPE_STRING = 5, PARAMTYPE_SHORTINT = 6
}
 

Typedef Documentation

typedef struct boolParam BOOLPARAM

Definition at line 55 of file Parameters.h.

typedef struct CharParam CHARPARAM

Definition at line 105 of file Parameters.h.

typedef struct IntParam INTPARAM

Definition at line 76 of file Parameters.h.

typedef struct LongintParam LONGINTPARAM

Definition at line 86 of file Parameters.h.

typedef struct Param PARAM

single parameter

Definition at line 34 of file Parameters.h.

typedef struct ParamData PARAMDATA

locally defined parameter specific data

Definition at line 35 of file Parameters.h.

typedef enum ParamType PARAMTYPE

Definition at line 32 of file Parameters.h.

typedef struct RealParam REALPARAM

Definition at line 96 of file Parameters.h.

typedef struct ShortintParam SHORTINTPARAM

Definition at line 65 of file Parameters.h.

typedef struct StringParam STRINGPARAM

Definition at line 113 of file Parameters.h.

Enumeration Type Documentation

enum ParamType

set of parameters possible parameter types

Enumerator
PARAMTYPE_BOOL 

bool values: TRUE or FALSE

PARAMTYPE_INT 

integer values

PARAMTYPE_LONGINT 

long integer values

PARAMTYPE_REAL 

real values

PARAMTYPE_CHAR 

characters

PARAMTYPE_STRING 
PARAMTYPE_SHORTINT 

short integer values strings: arrays of characters

Definition at line 22 of file Parameters.h.