From 937a002b0143f73e300d76e9f26f1b94434f8307 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sun, 6 Apr 2003 18:30:42 +0000 Subject: [PATCH] misc fixes git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1423 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- c++/testcpp.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c++/testcpp.cc b/c++/testcpp.cc index 2ca82b932..998eb198d 100644 --- a/c++/testcpp.cc +++ b/c++/testcpp.cc @@ -3,7 +3,7 @@ * Hamlib sample C++ program */ -#include +#include #include 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) {