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