1// Aseprite
2// Copyright (C) 2001-2015 David Capello
3//
4// This program is distributed under the terms of
5// the End-User License Agreement for Aseprite.
6
7#ifndef APP_NOTIFICATION_DELEGATE_H_INCLUDED
8#define APP_NOTIFICATION_DELEGATE_H_INCLUDED
9#pragma once
10
11#include <string>
12
13namespace app {
14
15 class INotificationDelegate {
16 public:
17 virtual ~INotificationDelegate() { }
18 virtual std::string notificationText() = 0;
19 virtual void notificationClick() = 0;
20 };
21
22}
23
24#endif
25