mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-01 01:20:25 +00:00
29 lines
453 B
C++
29 lines
453 B
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef UI_MESSAGE_LOOP_H_INCLUDED
|
|
#define UI_MESSAGE_LOOP_H_INCLUDED
|
|
#pragma once
|
|
|
|
namespace ui {
|
|
|
|
class Manager;
|
|
|
|
class MessageLoop
|
|
{
|
|
public:
|
|
MessageLoop(Manager* manager);
|
|
|
|
void pumpMessages();
|
|
|
|
private:
|
|
Manager* m_manager;
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif
|