git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1423 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Stéphane Fillod, F8CFE 2003-04-06 18:30:42 +00:00
rodzic 6b33e4038f
commit 937a002b01
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -3,7 +3,7 @@
* Hamlib sample C++ program
*/
#include <iostream.h>
#include <iostream>
#include <hamlib/rigclass.h>
int main(int argc, char* argv[])
@ -13,8 +13,8 @@ int main(int argc, char* argv[])
try {
myRig.open();
myRig.setFreq(MHz(144));
cout << myRig.getLevelI(RIG_LEVEL_STRENGTH) << "dB" << endl;
cout << "Modes for freq 14.332: " << myRig.RngRxModes(MHz(14.332)) << endl;
std::cout << myRig.getLevelI(RIG_LEVEL_STRENGTH) << "dB" << std::endl;
std::cout << "Modes for freq 14.332: " << myRig.RngRxModes(MHz(14.332)) << std::endl;
myRig.close();
}
catch (const RigException &Ex) {