aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-10-18 15:28:11 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:07:21 -0300
commit3ca81abb5f99a00004546d86a725e0d8a0f5ae77 (patch)
treeb798507b946089a0b9b1bcff28bfd62fc8fe56b1 /tests/libother
parent63fddfeb50bbd786826dd18be8851d0567cce041 (diff)
Created test for abstract function with not exported type as agument.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libother')
-rw-r--r--tests/libother/otherderived.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libother/otherderived.h b/tests/libother/otherderived.h
index 16f215451..553b14c1a 100644
--- a/tests/libother/otherderived.h
+++ b/tests/libother/otherderived.h
@@ -49,6 +49,8 @@ public:
// factory method
static Abstract* createObject();
+ void hideFunction(HideType*) {} ;
+
protected:
inline const char* getClassName() { return className(); }
virtual const char* className() { return "OtherDerived"; }