summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/port.h
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kwsdl/port.h')
-rw-r--r--kode/kwsdl/port.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/kode/kwsdl/port.h b/kode/kwsdl/port.h
index b0e982086..fe99295c1 100644
--- a/kode/kwsdl/port.h
+++ b/kode/kwsdl/port.h
@@ -22,51 +22,51 @@
#ifndef KWSDL_PORT_H
#define KWSDL_PORT_H
-#include <qmap.h>
+#include <tqmap.h>
namespace KWSDL {
class Port
{
public:
- typedef QValueList<Port> List;
+ typedef TQValueList<Port> List;
class Operation
{
public:
- typedef QValueList<Operation> List;
- typedef QMap<QString, Operation> Map;
+ typedef TQValueList<Operation> List;
+ typedef TQMap<TQString, Operation> Map;
Operation();
- Operation( const QString &name, const QString &input, const QString &output );
+ Operation( const TQString &name, const TQString &input, const TQString &output );
- void setName( const QString &name ) { mName = name; }
- QString name() const { return mName; }
+ void setName( const TQString &name ) { mName = name; }
+ TQString name() const { return mName; }
- void setInput( const QString &input ) { mInput = input; }
- QString input() const { return mInput; }
+ void setInput( const TQString &input ) { mInput = input; }
+ TQString input() const { return mInput; }
- void setOutput( const QString &output ) { mOutput = output; }
- QString output() const { return mOutput; }
+ void setOutput( const TQString &output ) { mOutput = output; }
+ TQString output() const { return mOutput; }
private:
- QString mName;
- QString mInput;
- QString mOutput;
+ TQString mName;
+ TQString mInput;
+ TQString mOutput;
};
Port();
- Port( const QString &name );
+ Port( const TQString &name );
- void setName( const QString &name ) { mName = name; }
- QString name() const { return mName; }
+ void setName( const TQString &name ) { mName = name; }
+ TQString name() const { return mName; }
void addOperation( const Operation &operation );
- Operation operation( const QString &name ) const;
+ Operation operation( const TQString &name ) const;
Operation::List operations() const;
private:
- QString mName;
+ TQString mName;
Operation::List mOperations;
};