Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Application Framework value class. More...
#include <ilviews/appframe/interf.h>
Public Member Functions | |
IlvDvValue (IlvDvInterface *v, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlUShort s, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlvBitmap *b, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlvColor *c, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlBoolean b, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (const char *s, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (const ILV_TM_PREF tm *time, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlDouble d, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlFloat f, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlUInt n, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlInt n, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (IlAny p, const char *name="") | |
Constructs an IlvDvValue object. | |
IlvDvValue (const IlvValue &src) | |
Copies the constructor of the IlvDvValue class. | |
IlvDvValue () | |
Constructs an IlvDvValue object. |
Application Framework value class.
Library: ilvappframe
IlvDvValue
is a subclass of IlvValue
. It defines constructors that have the value that the IlvDvValue
object must contain, as the first parameter. This allows the IlvDvValue
object to be built implicitly by specifying a value. This is shown in the following sample:
void sample(const IlvDvValue& param) { ... } ... sample(2); sample("Hello!"); sample((IlFloat)2.0);
IlvDvValue::IlvDvValue | ( | ) |
Constructs an IlvDvValue
object.
This constructor creates an empty instance of IlvDvValue
.
IlvDvValue::IlvDvValue | ( | const IlvValue & | src | ) |
Copies the constructor of the IlvDvValue
class.
This constructor creates an instance of IlvDvValue
initialized by the value of the src object.
IlvDvValue::IlvDvValue | ( | IlAny | p, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the value p.
IlvDvValue::IlvDvValue | ( | IlInt | n, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the integer n.
IlvDvValue::IlvDvValue | ( | IlUInt | n, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the integer n.
IlvDvValue::IlvDvValue | ( | IlFloat | f, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the float number f.
IlvDvValue::IlvDvValue | ( | IlDouble | d, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the double d.
IlvDvValue::IlvDvValue | ( | const ILV_TM_PREF tm * | time, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the time time.
IlvDvValue::IlvDvValue | ( | const char * | s, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the string s.
IlvDvValue::IlvDvValue | ( | IlBoolean | b, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the Boolean b.
IlvDvValue::IlvDvValue | ( | IlvColor * | c, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the color c.
IlvDvValue::IlvDvValue | ( | IlvBitmap * | b, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the bitmap b.
IlvDvValue::IlvDvValue | ( | IlUShort | s, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the unsigned short s.
IlvDvValue::IlvDvValue | ( | IlvDvInterface * | v, | |
const char * | name = "" | |||
) |
Constructs an IlvDvValue
object.
This constructor creates an instance of IlvDvValue
with the accessor name name and with the interface object v.
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.