diff options
author | Renato Filho <renato.filho@openbossa.org> | 2010-07-20 14:00:44 -0300 |
---|---|---|
committer | Renato Filho <renato.filho@openbossa.org> | 2010-08-18 15:21:20 -0300 |
commit | b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9 (patch) | |
tree | e106cc99a076d3c4677b6afb4857fcb36b1351f9 /tests/libsample/abstract.h | |
parent | da5a88b3b53b4769e77eff1d48cc9a2c7152f6c2 (diff) | |
download | shiboken-b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9.tar.gz shiboken-b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9.tar.xz shiboken-b4c007c3ee9932b7a384b2b4fcdc8b4be2dfbad9.zip |
fixed tests exported symbols.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com>
Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/libsample/abstract.h')
-rw-r--r-- | tests/libsample/abstract.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/libsample/abstract.h b/tests/libsample/abstract.h index 834a2f9b..842435bc 100644 --- a/tests/libsample/abstract.h +++ b/tests/libsample/abstract.h @@ -62,13 +62,13 @@ public: Abstract(int id = -1); virtual ~Abstract(); - int id() { return m_id; } + inline int id() { return m_id; } // factory method - static Abstract* createObject() { return 0; } + inline static Abstract* createObject() { return 0; } // method that receives an Object Type - static int getObjectId(Abstract* obj) { return obj->id(); } + inline static int getObjectId(Abstract* obj) { return obj->id(); } virtual void pureVirtual() = 0; virtual void* pureVirtualReturningVoidPtr() = 0; |