#include <FlashValue.h>
Public Member Functions | |
| FlashValue () | |
| FlashValue (bool booleanValue) | |
| FlashValue (int numericValue) | |
| FlashValue (float numericValue) | |
| FlashValue (const char *stringValue) | |
| FlashValue (const wchar_t *stringValue) | |
| FlashValue (const std::string &stringValue) | |
| FlashValue (const std::wstring &stringValue) | |
| short | getType () const |
| bool | isNull () const |
| void | setNull () |
| bool | getBool () const |
| float | getNumber () const |
| std::wstring | getString () const |
| FlashValue::FlashValue | ( | ) |
Creates a null FlashValue.
| FlashValue::FlashValue | ( | bool | booleanValue | ) |
Creates a FlashValue as a boolean type.
| booleanValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | int | numericValue | ) |
Creates a FlashValue as a number type.
| numericValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | float | numericValue | ) |
Creates a FlashValue as a number type.
| numericValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | const char * | stringValue | ) |
Creates a FlashValue as a string type.
| stringValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | const wchar_t * | stringValue | ) |
Creates a FlashValue as a string type.
| stringValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | const std::string & | stringValue | ) |
Creates a FlashValue as a string type.
| stringValue | The value to initialize this FlashValue with. |
| FlashValue::FlashValue | ( | const std::wstring & | stringValue | ) |
Creates a FlashValue as a string type.
| stringValue | The value to initialize this FlashValue with. |
| short FlashValue::getType | ( | ) | const |
Retrieves the FlashType of this FlashValue.
| bool FlashValue::isNull | ( | ) | const |
Returns whether or not this FlashValue is of a null type.
| void FlashValue::setNull | ( | ) |
Sets this FlashValue as a null type.
| bool FlashValue::getBool | ( | ) | const |
Retrieves the value as a boolean.
| float FlashValue::getNumber | ( | ) | const |
Retrieves the value as a number.
| std::wstring FlashValue::getString | ( | ) | const |
Retrieves the value as a string.
1.5.2