diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-30 14:54:37 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-07-30 14:54:37 -0500 |
commit | d6b290fda978379fb07285aaddfeb31686735667 (patch) | |
tree | c3e37b819707b82a0b8a7daf0d1a4ab1f2f4147e /include/datetime/snap.h | |
parent | f6df9730bd512982850b7f234f883eabbd925e7d (diff) | |
download | ayatana-indicator-datetime-d6b290fda978379fb07285aaddfeb31686735667.tar.gz ayatana-indicator-datetime-d6b290fda978379fb07285aaddfeb31686735667.tar.bz2 ayatana-indicator-datetime-d6b290fda978379fb07285aaddfeb31686735667.zip |
move Snap's guts into an Impl class
Diffstat (limited to 'include/datetime/snap.h')
-rw-r--r-- | include/datetime/snap.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/datetime/snap.h b/include/datetime/snap.h index 78d9f65..ef5c868 100644 --- a/include/datetime/snap.h +++ b/include/datetime/snap.h @@ -27,7 +27,6 @@ #include <functional> #include <memory> -#include <set> namespace unity { namespace indicator { @@ -49,9 +48,8 @@ public: appointment_func dismiss); private: - const std::shared_ptr<unity::indicator::notifications::Engine> m_engine; - const std::shared_ptr<const Settings> m_settings; - std::set<int> m_notifications; + class Impl; + std::unique_ptr<Impl> impl; }; } // namespace datetime |