diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-06-11 20:28:29 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-06-11 20:28:29 (GMT) |
commit | aa42a3adb3c5e36a77e24eb879ae6ecc8932b035 (patch) | |
tree | 466f19119225b428c1008de9bdbf507b8a27f7cb /Swiften | |
parent | 28584fcbc82974c51b8d9c3571238819085f266f (diff) | |
download | swift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.zip swift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.tar.bz2 |
Show the time of Notices in the tooltip.
Resolves: #396
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/Events/StanzaEvent.h | 8 |
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_; }; } |