aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/protected.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/protected.h')
-rw-r--r--tests/libsample/protected.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libsample/protected.h b/tests/libsample/protected.h
index 645dd93e9..1dc628d84 100644
--- a/tests/libsample/protected.h
+++ b/tests/libsample/protected.h
@@ -27,6 +27,7 @@
#include "objecttype.h"
#include "point.h"
#include <string>
+#include <list>
class ProtectedNonPolymorphic
{
@@ -128,6 +129,7 @@ public:
{}
protected:
int protectedProperty;
+ std::list<int> protectedContainerProperty;
Event::EventType protectedEnumProperty;
Point protectedValueTypeProperty;
Point* protectedValueTypePointerProperty;
@@ -135,4 +137,3 @@ protected:
};
#endif // PROTECTED_H
-