#pragma once #include "NetworkAPIProcessor.h" #include #include class UIMLDialog : public Framework::Fenster, public NetworkAPIProcessor { private: Framework::UIMLView* view; Framework::Text name; std::function onClose; public: UIMLDialog(Framework::Text uiml, std::function onClose); ~UIMLDialog(); void api(char* message) override; const Framework::Text& getName() const; };