summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
commitaa42a3adb3c5e36a77e24eb879ae6ecc8932b035 (patch)
tree466f19119225b428c1008de9bdbf507b8a27f7cb /Swiften/Events/StanzaEvent.h
parent28584fcbc82974c51b8d9c3571238819085f266f (diff)
downloadswift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.zip
swift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.tar.bz2
Show the time of Notices in the tooltip.
Resolves: #396
Diffstat (limited to 'Swiften/Events/StanzaEvent.h')
-rw-r--r--Swiften/Events/StanzaEvent.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Swiften/Events/StanzaEvent.h b/Swiften/Events/StanzaEvent.h
index 69fbe27..78dd4dc 100644
--- a/Swiften/Events/StanzaEvent.h
+++ b/Swiften/Events/StanzaEvent.h
@@ -6,19 +6,23 @@
#pragma once
-#include "Swiften/Base/boost_bsignals.h"
#include <boost/shared_ptr.hpp>
+#include <boost/date_time/posix_time/posix_time.hpp>
+
+#include "Swiften/Base/boost_bsignals.h"
namespace Swift {
class StanzaEvent {
public:
- StanzaEvent(){concluded_ = false;};
+ StanzaEvent() : time_(boost::posix_time::microsec_clock::universal_time()) {concluded_ = false;};
virtual ~StanzaEvent() {};
void conclude() {concluded_ = true; onConclusion();};
/** Do not call this directly from outside the class */
boost::signal<void()> onConclusion;
bool getConcluded() {return concluded_;};
+ boost::posix_time::ptime getTime() {return time_;}
private:
bool concluded_;
+ boost::posix_time::ptime time_;
};
}