aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/collector.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/collector.h')
-rw-r--r--sources/shiboken6/tests/libsample/collector.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/sources/shiboken6/tests/libsample/collector.h b/sources/shiboken6/tests/libsample/collector.h
new file mode 100644
index 000000000..26766847a
--- /dev/null
+++ b/sources/shiboken6/tests/libsample/collector.h
@@ -0,0 +1,37 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#ifndef COLLECTOR_H
+#define COLLECTOR_H
+
+#include "libsamplemacros.h"
+#include "intwrapper.h"
+#include "objecttype.h"
+
+#include <list>
+
+class LIBSAMPLE_API Collector
+{
+public:
+ Collector() noexcept = default;
+ virtual ~Collector() = default;
+ LIBMINIMAL_DISABLE_COPY_MOVE(Collector)
+
+ void clear();
+
+ Collector &operator<<(ObjectType::Identifier item);
+
+ Collector &operator<<(const ObjectType *);
+
+ std::list<ObjectType::Identifier> items();
+ int size() const;
+
+private:
+ std::list<ObjectType::Identifier> m_items;
+};
+
+/* Helper for testing external operators */
+LIBSAMPLE_API Collector &operator<<(Collector &, const IntWrapper &);
+
+#endif // COLLECTOR_H
+