![]() |
Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
#include <elm/util/VarArg.h>
Public Member Functions | |
| VarArg (va_list &args) | |
| VarArg (const VarArg &args) | |
| template<class T > | |
| T | next (void) |
| va_list & | args (void) |
| template<> | |
| bool | next (void) |
This is a wrapper around the <stdarg.h> macros. This class may be used:
|
inline |
Constructor from an existing va_list.
| args | Existing va_list. |
|
inline |
| T next | ( | void | ) |
Get the next item in the variable argument list.
|
inline |