From e8e86a50aa169eb945d3a3ad2302c1d8a63a26b0 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 30 Apr 2009 12:25:18 +0000 Subject: [PATCH] Added getters for the event data. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30505 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debuganalyzer/model/Model.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/apps/debuganalyzer/model/Model.h b/src/apps/debuganalyzer/model/Model.h index c7329cd5ae..3e31282e60 100644 --- a/src/apps/debuganalyzer/model/Model.h +++ b/src/apps/debuganalyzer/model/Model.h @@ -32,6 +32,8 @@ public: ~Model(); inline const char* DataSourceName() const; + inline void* EventData() const; + inline size_t EventDataSize() const; inline bigtime_t BaseTime() const; void SetBaseTime(bigtime_t time); @@ -331,6 +333,20 @@ Model::DataSourceName() const } +void* +Model::EventData() const +{ + return fEventData; +} + + +size_t +Model::EventDataSize() const +{ + return fEventDataSize; +} + + bigtime_t Model::BaseTime() const {