| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| * Copyright (c) 2013, Regents of the University of California |
| * BSD license, See the LICENSE file for more information |
| * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| #ifndef CHRONOS_INVITATION_DIALOG_HPP |
| #define CHRONOS_INVITATION_DIALOG_HPP |
| class InvitationDialog : public QDialog |
| InvitationDialog(QWidget* parent = 0); |
| setInvitation(const std::string& alias, |
| const std::string& chatroom, |
| const ndn::Name& invitationInterest); |
| invitationResponded(const ndn::Name& invitationName, bool accepted); |
| Ui::InvitationDialog* ui; |
| ndn::Name m_invitationInterest; |
| #endif // CHRONOS_INVITATION_DIALOG_HPP |