aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample')
-rw-r--r--tests/libsample/protected.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/libsample/protected.h b/tests/libsample/protected.h
index d8d55a40f..8ba4914f8 100644
--- a/tests/libsample/protected.h
+++ b/tests/libsample/protected.h
@@ -126,5 +126,14 @@ protected:
virtual PublicEnum publicEnumMethod(PublicEnum in) { return in; }
};
+
+class LIBSAMPLE_API ProtectedProperty
+{
+public:
+ ProtectedProperty() : protectedProperty(0) {}
+protected:
+ int protectedProperty;
+};
+
#endif // PROTECTED_H