xref: /haiku/src/apps/debugger/user_interface/gui/connection_config/ConnectionConfigHandler.cpp (revision eede6646dd548b5fe56d9305f1d6fb2b650e26c3)
1 /*
2  * Copyright 2016, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #include "ConnectionConfigHandler.h"
6 
7 
ConnectionConfigHandler(const char * name)8 ConnectionConfigHandler::ConnectionConfigHandler(const char* name)
9 	:
10 	fName(name)
11 {
12 }
13 
14 
~ConnectionConfigHandler()15 ConnectionConfigHandler::~ConnectionConfigHandler()
16 {
17 }
18