~pete-woods/unity-api/add-signal-managers

« back to all changes in this revision

Viewing changes to include/unity/util/GObjectMemory.h

  • Committer: Pete Woods
  • Date: 2017-03-23 11:10:37 UTC
  • Revision ID: pete.woods@canonical.com-20170323111037-ae4xejwnugeipfuk
More cleaning up

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
 
176
176
 Example:
177
177
 \code{.cpp}
178
 
 std::shared_ptr< name;
179
 
 g_object_get(obj, "name", assign_glib(name), nullptr);
 
178
 GObjectUPtr<FooBar> o;
 
179
 method_that_assigns_a_foobar(assign_gobject(o));
180
180
 \endcode
181
181
 */
182
182
template<typename SP>