mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-24 03:40:14 +00:00
25 lines
485 B
C++
25 lines
485 B
C++
// Aseprite
|
|
// Copyright (C) 2001-2015 David Capello
|
|
//
|
|
// This program is distributed under the terms of
|
|
// the End-User License Agreement for Aseprite.
|
|
|
|
#ifndef APP_NOTIFICATION_DELEGATE_H_INCLUDED
|
|
#define APP_NOTIFICATION_DELEGATE_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace app {
|
|
|
|
class INotificationDelegate {
|
|
public:
|
|
virtual ~INotificationDelegate() { }
|
|
virtual std::string notificationText() = 0;
|
|
virtual void notificationClick() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|