Line data Source code
1 : #include "wibmod/WIB1/AddressTable.hh"
2 : #include <fstream>
3 : #include "wibmod/WIB1/AddressTableException.hh"
4 : #include <boost/tokenizer.hpp> //tokenizer
5 : #include <stdlib.h> //strtoul & getenv
6 : #include <boost/regex.hpp> //regex
7 : #include <boost/algorithm/string/case_conv.hpp> //to_upper
8 :
9 :
10 0 : AddressTable::AddressTable(std::string const & addressTableName, std::string const & deviceAddress,uint16_t offset){
11 0 : fileLevel = 0;
12 0 : io = new BNL_UDP;
13 0 : io->Setup(deviceAddress,offset);
14 0 : io->SetWriteAck(true);
15 0 : LoadFile(addressTableName);
16 0 : }
|