PreferencesWindow.h 365 B

123456789101112131415161718
  1. /*
  2. * Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
  3. * Distributed under the terms of the MIT License.
  4. */
  5. #ifndef _PREFERENCES_WINDOW_H
  6. #define _PREFERENCES_WINDOW_H
  7. #include <Window.h>
  8. class PreferencesWindow : public BWindow {
  9. public:
  10. PreferencesWindow();
  11. virtual void MessageReceived(BMessage* msg);
  12. };
  13. #endif // _PREFERENCES_WINDOW_H