![]() |
PhoenixInkscape
2.0.0
Generate multiple png files with svg inkscape files
|
Go to the source code of this file.
Functions | |
std::list< PString > | phoenix_getArgumentList (int argc, char **argv) |
Convert the list of given arguments to the program into a list of string. More... | |
PString | phoenix_getProgramCall (const std::list< PString > &listArg) |
Get the program call. More... | |
bool | phoenix_isOptionExist (const std::list< PString > &listArg, const PString &arg1) |
Check if one of the two passed arguments are in the list of arguments. More... | |
bool | phoenix_isOptionExist (const std::list< PString > &listArg, const PString &arg1, const PString &arg2) |
Check if one of the two passed arguments are in the list of arguments. More... | |
bool | phoenix_isOptionExist (const std::list< PString > &listArg, const std::list< PString > &argCheckList) |
Check if one of the two passed arguments are in the list of arguments. More... | |
PString | phoenix_listArgToString (const std::list< PString > &listArg) |
Convert the given list of arguement into a string. More... | |
void | phoenix_rmProgramCall (std::list< PString > &listArg) |
Remove the program call from the list of argument. More... | |
std::list<PString> phoenix_getArgumentList | ( | int | argc, |
char ** | argv | ||
) |
Convert the list of given arguments to the program into a list of string.
argc | : number of arguments passed to the program |
argv | : table of arguments passed to the program |
Definition at line 15 of file get_argument_list.cpp.
Referenced by main().
Get the program call.
listArg | : list of argument passed to the program |
Definition at line 82 of file get_argument_list.cpp.
Referenced by main().
Check if one of the two passed arguments are in the list of arguments.
listArg | : list of arguments given to the program |
arg1 | : argument to be searched |
Definition at line 47 of file get_argument_list.cpp.
References phoenix_isOptionExist().
bool phoenix_isOptionExist | ( | const std::list< PString > & | listArg, |
const PString & | arg1, | ||
const PString & | arg2 | ||
) |
Check if one of the two passed arguments are in the list of arguments.
listArg | : list of arguments given to the program |
arg1 | : argument to be searched |
arg2 | : argument to be searched |
Definition at line 59 of file get_argument_list.cpp.
References phoenix_isOptionExist().
bool phoenix_isOptionExist | ( | const std::list< PString > & | listArg, |
const std::list< PString > & | argCheckList | ||
) |
Check if one of the two passed arguments are in the list of arguments.
listArg | : list of arguments given to the program |
argCheckList | : list of argument to be searched |
Definition at line 28 of file get_argument_list.cpp.
Referenced by main(), and phoenix_isOptionExist().
Convert the given list of arguement into a string.
listArg | : list of argument to be converted into a string |
Definition at line 70 of file get_argument_list.cpp.
References PString::escapeStr().
Referenced by main().
void phoenix_rmProgramCall | ( | std::list< PString > & | listArg | ) |
Remove the program call from the list of argument.
[out] | listArg | : list or argument to be modified |
Definition at line 90 of file get_argument_list.cpp.
Referenced by main().