Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/StarPopupInterface.hpp
blob: 56f537e738fccea017c2747bc24081dfbc7d9421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STAR_POPUP_INTERFACE_HPP
#define STAR_POPUP_INTERFACE_HPP

#include "StarPane.hpp"

namespace Star {

STAR_CLASS(PopupInterface);
class PopupInterface : public Pane {
public:
  PopupInterface();

  virtual ~PopupInterface() {}

  void displayMessage(String const& message, String const& title, String const& subtitle, Maybe<String> const& onShowSound = {});

private:
};

}

#endif