xref: /haiku/src/apps/serialconnect/SerialWindow.h (revision 7a74a5df454197933bc6e80a542102362ee98703)
1 /*
2  * Copyright 2012, Adrien Destugues, pulkomandy@gmail.com
3  * Distributed under the terms of the MIT licence.
4  */
5 
6 
7 #include <Window.h>
8 
9 
10 class TermView;
11 
12 
13 class SerialWindow: public BWindow
14 {
15 	public:
16 		SerialWindow();
17 
18 		void MessageReceived(BMessage* message);
19 
20 	private:
21 		TermView* fTermView;
22 
23 		static const char* kWindowTitle;
24 };
25