mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-24 21:39:51 +00:00
25 lines
483 B
C++
25 lines
483 B
C++
// Aseprite Document Library
|
|
// Copyright (c) 2001-2015 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef DOC_CONTEXT_OBSERVER_H_INCLUDED
|
|
#define DOC_CONTEXT_OBSERVER_H_INCLUDED
|
|
#pragma once
|
|
|
|
namespace doc {
|
|
|
|
class Document;
|
|
class Site;
|
|
|
|
class ContextObserver {
|
|
public:
|
|
virtual ~ContextObserver() { }
|
|
virtual void onActiveSiteChange(const Site& site) { }
|
|
};
|
|
|
|
} // namespace doc
|
|
|
|
#endif
|