xref: /haiku/src/apps/debugger/user_interface/gui/util/SignalDispositionMenu.h (revision b3f2ebf008490ab0b37e7d12fb6e2702f45bcd2b)
1*b3f2ebf0SRene Gollent /*
2*b3f2ebf0SRene Gollent  * Copyright 2015, Rene Gollent, rene@gollent.com.
3*b3f2ebf0SRene Gollent  * Distributed under the terms of the MIT License.
4*b3f2ebf0SRene Gollent  */
5*b3f2ebf0SRene Gollent #ifndef SIGNAL_DISPOSITION_MENU_H
6*b3f2ebf0SRene Gollent #define SIGNAL_DISPOSITION_MENU_H
7*b3f2ebf0SRene Gollent 
8*b3f2ebf0SRene Gollent 
9*b3f2ebf0SRene Gollent #include <Menu.h>
10*b3f2ebf0SRene Gollent 
11*b3f2ebf0SRene Gollent 
12*b3f2ebf0SRene Gollent class SignalDispositionMenu : public BMenu {
13*b3f2ebf0SRene Gollent public:
14*b3f2ebf0SRene Gollent 								SignalDispositionMenu(const char* label,
15*b3f2ebf0SRene Gollent 									BMessage* baseMessage = NULL);
16*b3f2ebf0SRene Gollent 	virtual						~SignalDispositionMenu();
17*b3f2ebf0SRene Gollent };
18*b3f2ebf0SRene Gollent 
19*b3f2ebf0SRene Gollent 
20*b3f2ebf0SRene Gollent #endif // SIGNAL_DISPOSITION_MENU_H
21