![]() |
PhoenixInkscape
2.0.0
Generate multiple png files with svg inkscape files
|
Go to the source code of this file.
Functions | |
template<typename T > | |
T | stringToValue (const std::string &str) |
Convert a string into value. More... | |
template<> | |
bool | stringToValue< bool > (const std::string &str) |
Convert a string to value (specialisation for bool) More... | |
template<> | |
PPath | stringToValue< PPath > (const std::string &str) |
Convert a string to value (specialisation for PPath) More... | |
template<> | |
PString | stringToValue< PString > (const std::string &str) |
Convert a string to value (specialisation for PString) More... | |
template<> | |
std::string | stringToValue< std::string > (const std::string &str) |
Convert a string to value (specialisation for string) More... | |
template<typename T > | |
std::string | valueToString (const T &val) |
Convert a type into a string. More... | |
template<> | |
std::string | valueToString< bool > (const bool &val) |
Convert a value to string (specialisation for bool) More... | |
template<> | |
std::string | valueToString< PPath > (const PPath &val) |
Convert a value to string (specialisation for PPath) More... | |
template<> | |
std::string | valueToString< PString > (const PString &val) |
Convert a value to string (specialisation for PString) More... | |
template<> | |
std::string | valueToString< std::string > (const std::string &val) |
Convert a value to string (specialisation for string) More... | |
T stringToValue | ( | const std::string & | str | ) |
Convert a string into value.
str | : string to be converted |
Definition at line 30 of file convertToString_impl.h.
bool stringToValue< bool > | ( | const std::string & | str | ) |
Convert a string to value (specialisation for bool)
str | : string |
Definition at line 79 of file convertToString.cpp.
Referenced by testConvertToString().
PPath stringToValue< PPath > | ( | const std::string & | str | ) |
Convert a string to value (specialisation for PPath)
str | : string |
Definition at line 60 of file convertToString.cpp.
Referenced by testConvertToString().
PString stringToValue< PString > | ( | const std::string & | str | ) |
Convert a string to value (specialisation for PString)
str | : string |
Definition at line 42 of file convertToString.cpp.
Referenced by testConvertToString().
std::string stringToValue< std::string > | ( | const std::string & | str | ) |
Convert a string to value (specialisation for string)
str | : string |
Definition at line 24 of file convertToString.cpp.
std::string valueToString | ( | const T & | val | ) |
Convert a type into a string.
val | : value to be converted |
Definition at line 19 of file convertToString_impl.h.
Referenced by checkResultConvertToString(), PString::fromValue(), getSlideNumber(), openFileStream(), PString::operator+=(), PString::operator<<(), PString::operator=(), phoenix_check(), phoenix_save_value_to_dico(), PLog::resize(), testConvertToString(), and PString::toString().
std::string valueToString< bool > | ( | const bool & | val | ) |
Convert a value to string (specialisation for bool)
val | : value |
Definition at line 69 of file convertToString.cpp.
std::string valueToString< PPath > | ( | const PPath & | val | ) |
Convert a value to string (specialisation for PPath)
val | : value |
Definition at line 51 of file convertToString.cpp.
Referenced by testConvertToString().
std::string valueToString< PString > | ( | const PString & | val | ) |
Convert a value to string (specialisation for PString)
val | : value |
Definition at line 33 of file convertToString.cpp.
Referenced by testConvertToString().
std::string valueToString< std::string > | ( | const std::string & | val | ) |
Convert a value to string (specialisation for string)
val | : value |
Definition at line 15 of file convertToString.cpp.