source:
pacpussensors/trunk/NMEA0183/src/HEX.cpp
Last change on this file was 59, checked in by , 10 years ago | |
---|---|
File size: 513 bytes |
Line | |
---|---|
1 | #include "nmea0183.h" |
2 | #pragma hdrstop |
3 | |
4 | /* |
5 | ** Author: Samuel R. Blackburn |
6 | ** Internet: sam_blackburn@pobox.com |
7 | ** |
8 | ** You can use it any way you like as long as you don't try to sell it. |
9 | ** |
10 | ** Copyright, 1996, Samuel R. Blackburn |
11 | ** |
12 | ** $Workfile: hex.cpp $ |
13 | ** $Revision: 4 $ |
14 | ** $Modtime: 10/10/98 2:58p $ |
15 | */ |
16 | |
17 | QString Hex( unsigned int value ) |
18 | { |
19 | QString return_string; |
20 | return_string = QString::number(value); |
21 | //return_string.Format( "%04lX",value ); |
22 | |
23 | return( return_string ); |
24 | } |
Note:
See TracBrowser
for help on using the repository browser.