Re: [Hamlib-developer] c++
Library to control radio transceivers and receivers
Brought to you by:
n0nb
|
From: Stephane F. <f4...@fr...> - 2002-06-27 15:10:09
|
Quoting "Dale E. Edmons" <de...@w-...>: > New rigctl.c should support comments now by prefixing '#' or ';' > and are terminated with '\r' or '\n'. Hopefully, my first check- > in worked. :) good stuff Can you share with us your "testing" script? Are you using expect or any test harness (dejagnu?) to automate work? > Can we write backends in c++ or is only c supported? The Hamlib frontend API and the backend interface _must_ be in C. Mainly because on some platforms, the C++ ABI is a pain in the a.. And since we want portability, there was no choice. Now, if someone is developing a backend he/she does not intend to distribute, he/she can write in c++, as long as the backend interface remain in C (don't forget the extern "C" ). Cheers Stephane |