IN2OSM  1.0.1
IO Namespace Reference

Functions

char * lowercase (char *input)
 change char * to lower case More...
 
bool ISNOT_INDOORGML (char **input)
 
void ISNOT_INDORGML_MESSAGE ()
 
std::vector< std::string > IMDF_FILE_LIST (std::string path)
 

Function Documentation

◆ IMDF_FILE_LIST()

std::vector<std::string> IO::IMDF_FILE_LIST ( std::string  path)

◆ ISNOT_INDOORGML()

bool ISNOT_INDOORGML ( char **  input)

Definition at line 28 of file IO.cpp.

28  {
29  bool output=false;
30  if (strcmp(lowercase(input[1]),"indoorgml")==0||strcmp(lowercase(input[2]),"indoorgml")==0)
31  output=true;
32  return output;
33  }
char * lowercase(char *input)
change char * to lower case
Definition: IO.cpp:18
Here is the call graph for this function:
Here is the caller graph for this function:

◆ ISNOT_INDORGML_MESSAGE()

void ISNOT_INDORGML_MESSAGE ( )

Definition at line 34 of file IO.cpp.

34  {
35  std::cout<<"INDOORGML FILE is not included among INPUT values.";
36  }
Here is the caller graph for this function:

◆ lowercase()

char * lowercase ( char *  input)

change char * to lower case

Returns
char*

Definition at line 18 of file IO.cpp.

18  {
19  int i=0;
20  char c;
21  while(input[i]){
22  c=input[i];
23  input[i]=tolower(c);
24  i++;
25  }
26  return input;
27  }
Here is the caller graph for this function: