mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 02:35:03 +01:00
23 lines
459 B
C
23 lines
459 B
C
|
/*
|
||
|
* Copyright 2005, Jérôme DUVAL. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
|
||
|
#ifndef __PARTITIONMENUITEM_H_
|
||
|
#define __PARTITIONMENUITEM_H_
|
||
|
|
||
|
|
||
|
#include <MenuItem.h>
|
||
|
|
||
|
|
||
|
class PartitionMenuItem : public BMenuItem {
|
||
|
public:
|
||
|
PartitionMenuItem(const char *label, BMessage *msg, const char* path);
|
||
|
~PartitionMenuItem();
|
||
|
const char* Path() { return fPath; };
|
||
|
private:
|
||
|
char *fPath;
|
||
|
};
|
||
|
|
||
|
#endif /* __PARTITIONMENUITEM_H_ */
|