1 /* 2 * Copyright 2008-2009, Axel Dörfler, axeld@pinc-software.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include "BaseDevice.h" 8 9 10 BaseDevice::BaseDevice() 11 : 12 fNode(NULL), 13 fInitialized(0), 14 fDeviceModule(NULL), 15 fDeviceData(NULL) 16 { 17 } 18 19 20 BaseDevice::~BaseDevice() 21 { 22 } 23 24 25 status_t 26 BaseDevice::InitDevice() 27 { 28 return B_ERROR; 29 } 30 31 32 void 33 BaseDevice::UninitDevice() 34 { 35 } 36 37 38 void 39 BaseDevice::Removed() 40 { 41 } 42