aseprite/src/doc/context_observer.h

24 lines
472 B
C
Raw Normal View History

// Aseprite Document Library
// Copyright (c) 2001-2014 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 ContextObserver {
public:
virtual ~ContextObserver() { }
virtual void onSetActiveDocument(Document* document) { }
};
} // namespace doc
#endif