Alexander Nasonov wrote:
> You can create your own framework for dynamic_any using
> dynamic_any::function. In a combination with simple and typesafe interface
> it could make great library. Basic idea is here:
> 
> namespace your_framework
> {
>   // ...
>   namespace detail
>   {
>     // ...
>     struct raw_convert
>       : boost::dynamic_any::function
>         <
>           convert,
>           void * (boost::dynamic_any::arg &)
>         >

Oops, here is a typo. Should be 

    struct raw_convert
      : boost::dynamic_any::function
        <
          raw_convert, // typo was here
          void * (boost::dynamic_any::arg &)
        >

-- 
Alexander Nasonov
Remove -nospam from my e-mail address for timely response



_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to