mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 23:04:48 +01:00
12d8a9f85b
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40956 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
299 B
C++
19 lines
299 B
C++
/*
|
|
* 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:
|
|
BAboutMenuItem(const char* appName);
|
|
};
|
|
|
|
|
|
#endif // B_ABOUT_MENU_ITEM_H
|