Library of Bus-Adapters
|
00001 // $Id: version.cc,v 1.3 2007/06/11 17:30:49 cschwick Exp $ 00002 00003 /************************************************************************* 00004 * XDAQ Components for Distributed Data Acquisition * 00005 * Copyright (C) 2000-2004, CERN. * 00006 * All rights reserved. * 00007 * Authors: J. Gutleber and L. Orsini * 00008 * * 00009 * For the licensing terms see LICENSE. * 00010 * For the list of contributors see CREDITS. * 00011 *************************************************************************/ 00012 00013 #include "hal/busAdapter/pci/version.h" 00014 #include "config/version.h" 00015 #include "xcept/version.h" 00016 00017 GETPACKAGEINFO(pcilinuxbusadapter) 00018 00019 void pcilinuxbusadapter::checkPackageDependencies() throw (config::PackageInfo::VersionException) 00020 { 00021 CHECKDEPENDENCY(config); 00022 CHECKDEPENDENCY(xcept); 00023 } 00024 00025 std::set<std::string, std::less<std::string> > pcilinuxbusadapter::getPackageDependencies() 00026 { 00027 std::set<std::string, std::less<std::string> > dependencies; 00028 00029 ADDDEPENDENCY(dependencies,config); 00030 ADDDEPENDENCY(dependencies,xcept); 00031 00032 return dependencies; 00033 } 00034