1)many headers are missing:
using namespace std;
thus it won't compile because of undefined references.
2)Once they all have their namespace, it doesn't
compile because of a function at
CKermitProtocol.cc line 171:
Protocol::TransferCallback(bytes, cps,
plength, percent,
done);
"done" is used but was never declared? Since i don't
know the logic, i can't repair that
So forcing it to true
3) then it doesn't compile because of:
test.cc: In function `int main()':
test.cc:72: no matching function for call to
`HPTalX::connect()'
../core/HPTalX.hh:47: candidates are: bool
HPTalX::connect(std::basic_string<char,
std::char_traits<char>,
std::allocator<char> >)
And that's when i stopped trying to compile it :(