SophiaFramework UNIVERSE 5.3 |
#include <SFCType.h.hpp>
class va_ref;
class ExampleClass; // user defined class void example_func(va_ref<ExampleClass>, ...); // forward declaration of variable-length argument function ... // inside a function ExampleClass exampleObj; example_func(exampleObj); // automatically wrapped by the va_ref class ..
Constructor/Destructor |
---|
va_ref(
T & param
) Constructor of va_ref class.
|
Public Functions | |
---|---|
T & |
operator*( Void ) Retrieve the maintained object.
|
T * |
operator->( Void ) Get the pointer to the maintained object.
|
[ public ] va_ref( T & param // the object converted into reference );
[ public, const ] T * operator->(Void);
[ public, const ] T & operator*(Void);
Copyright(c) 2002 - 2024 Sophia Cradle Incorporated All Rights Reserved. |