| /* -*- 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: Qiuhan Ding <qiuhanding@cs.ucla.edu> |
| * Yingdi Yu <yingdi@cs.ucla.edu> |
| #ifndef CHRONOCHAT_INVITATION_REQUEST_DIALOG_HPP |
| #define CHRONOCHAT_INVITATION_REQUEST_DIALOG_HPP |
| class InvitationRequestDialog; |
| class InvitationRequestDialog : public QDialog |
| InvitationRequestDialog(QWidget* parent = 0); |
| ~InvitationRequestDialog(); |
| invitationRequestResponded(const ndn::Name& invitationName, bool accepted); |
| onInvitationRequestReceived(QString alias, QString chatroom, ndn::Name invitationInterest); |
| Ui::InvitationRequestDialog* ui; |
| ndn::Name m_invitationInterest; |
| } // namespace chronochat |
| #endif // CHRONOCHAT_INVITATION_REQUEST_DIALOG_HPP |