ecorm / cppwamp

C++ client library for the WAMP protocol.
Boost Software License 1.0
35 stars 9 forks source link

Simplify unmarshalling of static slot arguments #52

Closed ecorm closed 9 years ago

ecorm commented 9 years ago

Instead of the recursive function mess currently used in Unmarshall, use a parameter pack of numbers as shown in http://stackoverflow.com/a/7858971/245265.

Also consider renaming Unmarshall to Unpacker.

ecorm commented 9 years ago

Also, unpacking errors (insufficient arguments or invalid types) should have their own distinct exception type.