From b29c78f818ac92f42621c69c29736fe5c8e32c6f Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Thu, 1 Mar 2012 12:32:10 +0100 Subject: Initial prototype of GObject-based libuca --- test/test-gobject.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/test-gobject.c (limited to 'test/test-gobject.c') diff --git a/test/test-gobject.c b/test/test-gobject.c new file mode 100644 index 0000000..392a4f3 --- /dev/null +++ b/test/test-gobject.c @@ -0,0 +1,20 @@ +#include +#include "uca-camera.h" +#include "uca-mock-camera.h" + +int main(int argc, char **argv) +{ + g_type_init(); + + UcaMockCamera *cam = (UcaMockCamera *) g_object_new(UCA_TYPE_MOCK_CAMERA, NULL); + + guint width; + g_object_get(cam, + "sensor-width", &width, + NULL); + g_print("width = %i\n", width); + + uca_camera_start_recording(UCA_CAMERA(cam)); + + g_object_unref(cam); +} -- cgit v1.2.3