Home Texas Home

TVariable

Standard constructor, initialise the TVariable class.
TVariable(
   void
);
TVariable(
   bool initBoolean
);
TVariable(
   __int64 initInteger
);
TVariable(
   double initDecimal
);
TVariable(
   void* initPointer
);
TVariable(
   const char *initAString
);
TVariable(
   const BYTE *initAString
);
TVariable(
   const char16_t *initWString
);
TVariable(
   const TVariable &initTVariable
);
TVariable(
   const void *initBString,
   unsigned int bString_l
);

Parameters

initBoolean 8 bit boolean value
initInteger Signed 64 bit Integer
initDecimal 64 bit double floating point value
initAString Any 8 bit null terminating string.
initWString Any 16 bit null terminating string.
initTVariable The value of the TVariable will be copied into the new TVariable
initBString Void pointer to a binary string.
bString_l the length in bytes of the binary string.

Return Values

Remarks

Example Use

TVariable TVariable(1);

Also See

~TVariable

Copyright © 2007, Ekky Software Pty Ltd.