| 118 | the archive. */ |
| 119 | template <class ... Args> |
| 120 | UserDataAdapter( UserData & ud, Args && ... args ) : |
| 121 | Archive( std::forward<Args>( args )... ), |
| 122 | userdata( ud ) |
| 123 | { } |
| 124 | |
| 125 | private: |
| 126 | //! Overload the rtti function to enable dynamic_cast |
nothing calls this directly
no outgoing calls
no test coverage detected