~phablet-team/messaging-framework/maintain-connection-state

« back to all changes in this revision

Viewing changes to include/messaging/group_manager.h

  • Committer: Tarmac
  • Author(s): Roberto Mier Escandon
  • Date: 2016-08-23 22:12:02 UTC
  • mfrom: (54.1.6 include-group-creator)
  • Revision ID: tarmac-20160823221202-xp8p4pcb6fwp5jar
Added creator to the group when created the channel.

NOTE: this branch should be landed along with https://code.launchpad.net/~ningbo-team/ningbo/include-group-creator/+merge/303179.

Approved by Tiago Salem Herrmann, system-apps-ci-bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    Error
48
48
};
49
49
 
50
 
 
51
50
/// @brief GroupManager models a textual group conversation.
52
51
class MESSAGING_FW_PUBLIC GroupManager : public Interface, NonCopyable, NonMovable
53
52
{
93
92
    /// @brief group_title returns the title of the group being managed
94
93
    virtual std::string group_title() = 0;
95
94
 
 
95
    /// @brief creator returns the creator of the group being managed
 
96
    virtual std::shared_ptr<Member> group_creator() = 0;
 
97
 
96
98
    /// @brief members returns current participants in the group.
97
99
    virtual Members members() = 0;
98
100