tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / printers / TransportMenu.h
blob8428278d3f0f90eaf87356388cddcd6dd34faa2d
1 /*
2 * Copyright 2010, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer
7 */
9 #ifndef _TRANSPORT_MENU_H
10 #define _TRANSPORT_MENU_H
13 #include <Menu.h>
14 #include <Messenger.h>
15 #include <String.h>
18 class TransportMenu : public BMenu
20 public:
21 TransportMenu(const char* title, uint32 what,
22 const BMessenger& messenger, const BString& transportName);
24 bool AddDynamicItem(add_state s);
26 private:
27 uint32 fWhat;
28 BMessenger fMessenger;
29 BString fTransportName;
32 #endif