diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /ksim/monitors/snmp/value.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/monitors/snmp/value.h')
-rw-r--r-- | ksim/monitors/snmp/value.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ksim/monitors/snmp/value.h b/ksim/monitors/snmp/value.h index 4ffdcbb..5b2d6cd 100644 --- a/ksim/monitors/snmp/value.h +++ b/ksim/monitors/snmp/value.h @@ -20,7 +20,7 @@ #ifndef VALUE_H #define VALUE_H -#include <qhostaddress.h> +#include <tqhostaddress.h> namespace KSim { @@ -65,9 +65,9 @@ public: Value( uint val, Type type ); Value( float val ); Value( double val ); - Value( const QByteArray &data ); + Value( const TQByteArray &data ); Value( const Identifier &oid ); - Value( const QHostAddress &address ); + Value( const TQHostAddress &address ); Value( Q_UINT64 counter ); Value( const Value &rhs ); @@ -81,18 +81,18 @@ public: int toInt() const; uint toUInt() const; double toDouble() const; - const QByteArray toByteArray() const; + const TQByteArray toByteArray() const; const Identifier toOID() const; - const QHostAddress toIpAddress() const; + const TQHostAddress toIpAddress() const; uint toCounter() const; uint toGauge() const; int toTimeTicks() const; Q_UINT64 toCounter64() const; - QString toString( int conversionFlags = 0 ) const; + TQString toString( int conversionFlags = 0 ) const; private: - static QString formatTimeTicks( int ticks, int conversionFlags ); + static TQString formatTimeTicks( int ticks, int conversionFlags ); ValueImpl *d; }; |