2011-03-15 04:04:41 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Haiku, Inc.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef B_ABOUT_MENU_ITEM_H
|
|
|
|
#define B_ABOUT_MENU_ITEM_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <MenuItem.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BAboutMenuItem : public BMenuItem {
|
|
|
|
public:
|
2011-03-16 00:00:16 +03:00
|
|
|
BAboutMenuItem();
|
2011-03-15 04:04:41 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // B_ABOUT_MENU_ITEM_H
|