summaryrefslogtreecommitdiff
path: root/src/QGlib/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/QGlib/init.cpp')
-rw-r--r--src/QGlib/init.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/QGlib/init.cpp b/src/QGlib/init.cpp
new file mode 100644
index 0000000..5dfc1fa
--- /dev/null
+++ b/src/QGlib/init.cpp
@@ -0,0 +1,32 @@
+/*
+ Copyright (C) 2010 Collabora Ltd. <info@collabora.co.uk>
+ @author George Kiagiadakis <george.kiagiadakis@collabora.co.uk>
+
+ This library is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+#include <glib-object.h>
+
+namespace QGlib {
+
+namespace Private {
+ void registerWrapperConstructors(); //generated by codegen
+}
+
+void init()
+{
+ g_type_init();
+ Private::registerWrapperConstructors();
+}
+
+} //namespace QGlib