aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pysidemetafunction_p.h
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-11-05 16:34:11 -0300
committerrenatofilho <renato.filho@openbossa.org>2010-11-05 19:01:07 -0300
commit257e0cdf188172a9548e652ca5763bb124bb58ea (patch)
treec80ef9004c247d81c60b32535e3bf847aa0fafea /libpyside/pysidemetafunction_p.h
parent5371e403ffe741119ba0803077b772ca84f3fce3 (diff)
Implemented PySideMetaFunction class used to call dynamic slots.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'libpyside/pysidemetafunction_p.h')
-rw-r--r--libpyside/pysidemetafunction_p.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/libpyside/pysidemetafunction_p.h b/libpyside/pysidemetafunction_p.h
new file mode 100644
index 000000000..808714ef1
--- /dev/null
+++ b/libpyside/pysidemetafunction_p.h
@@ -0,0 +1,35 @@
+/*
+ * This file is part of the PySide project.
+ *
+ * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+ *
+ * Contact: PySide team <contact@pyside.org>
+ *
+ * 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 library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef PYSIDE_METAFUNCTION_P_H
+#define PYSIDE_METAFUNCTION_P_H
+
+#include <Python.h>
+
+namespace PySide { namespace MetaFunction {
+
+ void init(PyObject* module);
+
+} //namespace MetaFunction
+} //namespace PySide
+
+#endif