1 /* 2 * Copyright 2008, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Axel Dörfler, axeld@pinc-software.de 7 */ 8 9 10 #include "AutoconfigClient.h" 11 12 13 AutoconfigClient::AutoconfigClient(const char* name, BMessenger target, 14 const char* device) 15 : BHandler(name), 16 fTarget(target), 17 fDevice(device) 18 { 19 } 20 21 22 AutoconfigClient::~AutoconfigClient() 23 { 24 } 25 26 27 status_t 28 AutoconfigClient::Initialize() 29 { 30 return B_NOT_SUPPORTED; 31 } 32