Library of Bus-Adapters
/home/cschwick/hal/busAdapter/caen/src/common/CAENDeviceIdentifier.cc
Go to the documentation of this file.
00001 #include "hal/CAENDeviceIdentifier.hh"
00002 #include "CAENVMElib.h"
00003 
00004 HAL::CAENDeviceIdentifier::CAENDeviceIdentifier( uint32_t adapterHandle,
00005                                             bool doSwapping )  
00006     throw (BusAdapterException)
00007     : adapterHandle_( adapterHandle ),
00008       doSwapping_( doSwapping ){
00009 }
00010 
00011 HAL::CAENDeviceIdentifier::~CAENDeviceIdentifier(){
00012 }
00013 
00014 const long HAL::CAENDeviceIdentifier::getAdapterHandle() const {
00015     return adapterHandle_;
00016 }
00017 
00018 const bool HAL::CAENDeviceIdentifier::doSwapping() const {
00019     return doSwapping_;
00020 }
00021 
00022 std::string HAL::CAENDeviceIdentifier::printString() const {
00023     return "there is nothing to print in HAL::CAENDeviceIdentifier::print()";
00024 }