![]() ![]() ![]()
|
BREW C++ Class Library & GUI Framework & XML Middleware : SophiaFramework 4.1 |
#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 - 2009 Sophia Cradle, Inc. All Rights Reserved. |
![]() ![]() ![]()
|