| /* -*- 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 INVITATION_DIALOG_H |
| #define INVITATION_DIALOG_H |
| #include <ndn-cxx/name.hpp> |
| class InvitationDialog : public QDialog |
| explicit 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 // INVITATION_DIALOG_H |