Value::Value

Value::Value
Value();
Value(ValueType type);
Value(SInt32 v);
Value(UInt32 v);
Value(double v);
Value(bool v);
Value(const char* ps);
Value(const wchar_t* ps);
Value(const Value& src);
Description

Initializes Value object.

Parameters
Parameters 
Description 
ValueType type 
Type of value. 
SInt32 v 
Value of number to hold in Value. 
const char* ps 
Pointer to a string. 
const Value& src 
Value object.