aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/ctorconvrule.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-12-06 14:30:33 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:12:08 -0300
commitfbde5bbaf584e87ca55045985039e53268f0c92c (patch)
treec0a67a0dac9011c04af9917490953c8ca41dbf83 /tests/libsample/ctorconvrule.h
parenta778f9f14703302132ebe13ed19f510bfa88213f (diff)
Test case for proper generation of constructor altered by conversion-rule tag.
Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libsample/ctorconvrule.h')
-rw-r--r--tests/libsample/ctorconvrule.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/libsample/ctorconvrule.h b/tests/libsample/ctorconvrule.h
new file mode 100644
index 000000000..681bd78f7
--- /dev/null
+++ b/tests/libsample/ctorconvrule.h
@@ -0,0 +1,38 @@
+/*
+ * This file is part of the Shiboken Python Binding Generator project.
+ *
+ * Copyright (C) 2009 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 CTORCONVRULE_H
+#define CTORCONVRULE_H
+
+#include "libsamplemacros.h"
+
+class CtorConvRule
+{
+public:
+ explicit CtorConvRule(long value) : m_value(value) {}
+ virtual void dummyVirtualMethod() {}
+ long value() { return m_value; }
+private:
+ long m_value;
+};
+
+#endif