$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Turkanis (technews_at_[hidden])
Date: 2005-05-18 12:07:00
Tim Michals wrote:
> I'm trying to figure out how would you format the IDL function for a
> general function like printf?
>
> For example
> the function is printf( const char *fmt, ...)
>
> How you format the IDL function?
> BOOST_IDL_FN1(formatMsg, const char *fmt)
Function with variable numbers of arguments, and non-member functions, aren't
(yet) supported. In fact, supporting functions with variable number of arguments
never occurred to me. Also, when non-member functions are supported, they will
have to have at least one parameter type related to the interface being defined.
What's your intended use?
Best,
Jonathan