aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testtemplates.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-04-29 11:39:34 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:01 -0300
commit4bab4ec7e92fa9cc758d30ad8ff7887760fbbdbb (patch)
tree5db033c9b4c23138c314d2a0c6b8776ff168363a /tests/testtemplates.h
parentca3eac504857ade114fadb614631fe6ab78c5aad (diff)
Added tests for template instanciations using enum values, all under a nice namespace.
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Renato Araújo <renato.araujo@openbossa.org>
Diffstat (limited to 'tests/testtemplates.h')
-rw-r--r--tests/testtemplates.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/testtemplates.h b/tests/testtemplates.h
new file mode 100644
index 000000000..5c6e85a06
--- /dev/null
+++ b/tests/testtemplates.h
@@ -0,0 +1,36 @@
+/*
+* This file is part of the API Extractor project.
+*
+* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+*
+* Contact: PySide team <contact@pyside.org>
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License
+* version 2 as published by the Free Software Foundation.
+*
+* 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 General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA
+*
+*/
+
+#ifndef TESTTEMPLATES_H
+#define TESTTEMPLATES_H
+
+#include <QObject>
+
+class TestTemplates : public QObject
+{
+ Q_OBJECT
+private slots:
+ void testTemplateOnContainers();
+};
+
+#endif