aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2010-03-18 17:39:20 -0300
committerLauro Neto <lauro.neto@openbossa.org>2010-03-22 15:57:26 -0300
commit50e58a81949c32c3154f5bd65fc68f2b3f8d7d26 (patch)
treea7f90ef52ac74a8b54db704a002c8a4ed53b70a6 /tests/libsample
parentd4e41a5795d74d8ad55069374c34d2dc0a4c33f6 (diff)
Adding greedy method to Collector
This method will somehow conflict with the external operator in libother OtherObjectType
Diffstat (limited to 'tests/libsample')
-rw-r--r--tests/libsample/collector.cpp7
-rw-r--r--tests/libsample/collector.h4
-rw-r--r--tests/libsample/objecttype.h2
3 files changed, 13 insertions, 0 deletions
diff --git a/tests/libsample/collector.cpp b/tests/libsample/collector.cpp
index 36e0145f4..c33269de1 100644
--- a/tests/libsample/collector.cpp
+++ b/tests/libsample/collector.cpp
@@ -54,6 +54,13 @@ Collector::operator<<(signed int item)
return *this;
}
+Collector&
+Collector::operator<<(const ObjectType *obj)
+{
+ m_items.push_back(obj->identifier());
+ return *this;
+}
+
std::list<int>
Collector::items()
{
diff --git a/tests/libsample/collector.h b/tests/libsample/collector.h
index 68d7f536c..623f64696 100644
--- a/tests/libsample/collector.h
+++ b/tests/libsample/collector.h
@@ -38,6 +38,8 @@
#include <list>
#include "libsamplemacros.h"
+#include "objecttype.h"
+
class LIBSAMPLE_API Collector
{
public:
@@ -49,6 +51,8 @@ public:
Collector& operator<<(unsigned int item);
Collector& operator<<(signed int item);
+ Collector& operator<<(const ObjectType *);
+
std::list<int> items();
int size();
diff --git a/tests/libsample/objecttype.h b/tests/libsample/objecttype.h
index 3679b3b77..b606dd818 100644
--- a/tests/libsample/objecttype.h
+++ b/tests/libsample/objecttype.h
@@ -81,6 +81,8 @@ public:
Str objectName() const;
void setObjectName(const Str& name);
+ unsigned long identifier() const { return reinterpret_cast<unsigned long>(this); }
+
bool causeEvent(Event::EventType eventType);
// Returns true if the event is processed.