~thomas-voss/dbus-cpp/refactor-core-dbus-object

« back to all changes in this revision

Viewing changes to include/core/dbus/codec.h

  • Committer: thomas-voss
  • Date: 2014-04-02 19:50:44 UTC
  • Revision ID: thomas.voss@canonical.com-20140402195044-smlwkv1o7g4znxan
First cut at making core::dbus::Message an interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
 
306
306
    inline static void decode_argument(Message::Reader& in, types::Any& value)
307
307
    {
308
 
        value = types::Any{in};
 
308
        value = types::Any{in.clone()};
309
309
    }
310
310
};
311
311