Jean
In CurlHandle.inl we have this
template< typename OptionType >
void
cURLpp::CurlHandle::option(CURLoption optionType,
OptionType value)
{
CURLcode code;
code = curl_easy_setopt(mCurl, optionType, value);
libcurlRuntimeAssert(mErrorBuffer, code);
}
template< typename OptionType, CURLoption optionType >
void
cURLpp::CurlHandle::option(OptionType value)
{
option(optionType, value);
}
So there are as many option functions as there are many OptionType types. Do we
really need this?
Regards
Piotr Dobrogost
_______________________________________________
cURLpp mailing list
[email protected]
http://www.rrette.com/mailman/listinfo/curlpp