diff options
author | louiz’ <louiz@louiz.org> | 2016-10-31 02:01:01 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-31 02:01:01 +0100 |
commit | 8c26b4d19f6d3464050a34c782694059b2a7b013 (patch) | |
tree | 6e7e80bca7e3f8c60f9ac5850993a0a4ac1d5353 /louloulibs/xmpp/roster.hpp | |
parent | 056bc3da066bbf0345db27ac41bca0433ba4db0b (diff) | |
download | biboumi-8c26b4d19f6d3464050a34c782694059b2a7b013.tar.gz biboumi-8c26b4d19f6d3464050a34c782694059b2a7b013.tar.bz2 biboumi-8c26b4d19f6d3464050a34c782694059b2a7b013.tar.xz biboumi-8c26b4d19f6d3464050a34c782694059b2a7b013.zip |
Remove unused roster code
Diffstat (limited to 'louloulibs/xmpp/roster.hpp')
-rw-r--r-- | louloulibs/xmpp/roster.hpp | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/louloulibs/xmpp/roster.hpp b/louloulibs/xmpp/roster.hpp deleted file mode 100644 index aa1b449..0000000 --- a/louloulibs/xmpp/roster.hpp +++ /dev/null @@ -1,71 +0,0 @@ -#pragma once - - -#include <algorithm> -#include <string> -#include <vector> - -class RosterItem -{ -public: - RosterItem(const std::string& jid, const std::string& name, - std::vector<std::string>& groups); - RosterItem(const std::string& jid, const std::string& name); - RosterItem() = default; - ~RosterItem() = default; - RosterItem(const RosterItem&) = default; - RosterItem(RosterItem&&) = default; - RosterItem& operator=(const RosterItem&) = default; - RosterItem& operator=(RosterItem&&) = default; - - std::string jid; - std::string name; - std::vector<std::string> groups; - -private: -}; - -/** - * Keep track of the last known stat of a JID's roster - */ -class Roster -{ -public: - Roster() = default; - ~Roster() = default; - - void clear(); - - template <typename... ArgsType> - RosterItem* add_item(ArgsType&&... args) - { - this->items.emplace_back(std::forward<ArgsType>(args)...); - auto it = this->items.end() - 1; - return &*it; - } - RosterItem* get_item(const std::string& jid) - { - auto it = std::find_if(this->items.begin(), this->items.end(), - [this, &jid](const auto& item) - { - return item.jid == jid; - }); - if (it != this->items.end()) - return &*it; - return nullptr; - } - const std::vector<RosterItem>& get_items() const - { - return this->items; - } - -private: - std::vector<RosterItem> items; - - Roster(const Roster&) = delete; - Roster(Roster&&) = delete; - Roster& operator=(const Roster&) = delete; - Roster& operator=(Roster&&) = delete; -}; - - |