Changeset 8699 for ossiedev/branches/mcarrick/DPD/HWDeviceRegistration.cpp
- Timestamp:
- 02/16/09 15:29:09 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/branches/mcarrick/DPD/HWDeviceRegistration.cpp
r8697 r8699 16 16 HWDeviceRegistration::~HWDeviceRegistration() 17 17 { 18 /*19 std::cout << "hw device reg deconstruct ... " << std::endl;20 21 for (int i = 0; i < childHWDevices.size(); i++)22 {23 std::cout << "i: " << i << std::endl;24 delete [] childHWDevices[i];25 std::cout << "deleted, i: " << i << std::endl;26 }27 std::cout << "exiting hwdev deconstruct ... " << std::endl;28 */29 18 } 30 19 … … 64 53 } 65 54 66 ChildHWDevice::ChildHWDevice(TiXmlElement *elem):DevicePkgRef(elem->FirstChildElement("devicepkgref")) ,HWDeviceRegistration(elem->FirstChildElement("hwdeviceregistration"))55 ChildHWDevice::ChildHWDevice(TiXmlElement *elem):DevicePkgRef(elem->FirstChildElement("devicepkgref")) 67 56 { 68 57 } … … 70 59 ChildHWDevice::~ChildHWDevice() 71 60 { 72 std::cout << "child hw dev deconstruct ... " << std::endl;73 61 } 74 62 … … 78 66 } 79 67 80 std::string HWDeviceRegistration::get IDHWDevReg()68 std::string HWDeviceRegistration::getHWDevRegID() 81 69 { 82 70 return id; 83 71 } 84 72 85 std::string HWDeviceRegistration::get VersionHWDevReg()73 std::string HWDeviceRegistration::getHWDevRegVersion() 86 74 { 87 75 return version; 88 76 } 89 77 90 std::string HWDeviceRegistration::get NameHWDevReg()78 std::string HWDeviceRegistration::getHWDevRegName() 91 79 { 92 80 return name; 93 81 } 94 82 95 std::string HWDeviceRegistration::get Description()83 std::string HWDeviceRegistration::getHWDevRegDescription() 96 84 { 97 85 return description; 98 86 } 99 87 100 std::string HWDeviceRegistration::get Manufacturer()88 std::string HWDeviceRegistration::getHWDevRegManufacturer() 101 89 { 102 90 return manufacturer; 103 91 } 104 92 105 std::string HWDeviceRegistration::get ModelNumber()93 std::string HWDeviceRegistration::getHWDevRegModelNumber() 106 94 { 107 95 return modelnumber; … … 115 103 116 104 117