13
0
livetrax/libs/glibmm2/tests/glibmm_value/glibmm_value.cc
Carl Hetherington aa6faa86b5 More missing stuff...
git-svn-id: svn://localhost/ardour2/trunk@2645 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-11-13 10:45:40 +00:00

33 lines
543 B
C++

#include <glibmm.h>
struct Foo
{
int bar;
};
namespace Gtk
{
class Widget;
}
void some_method()
{
// custom copyable
Glib::Value<Foo> value_foo;
// custom pointer
Glib::Value<Foo*> value_foo_pointer;
Glib::Value<const Foo*> value_foo_const_pointer;
// Glib::Object pointer
Glib::Value<Gtk::Widget*> value_widget_pointer;
Glib::Value<const Gtk::Widget*> value_widget_const_pointer;
}
// Glib::Object RefPtr<>
//template Glib::Value< Glib::RefPtr<Gdk::Pixbuf> >;
//template Glib::Value< Glib::RefPtr<const Gdk::Pixbuf> >;