Symbian: Added a serial connection type to CODA

This commit is contained in:
Pawel Polanski
2011-01-25 09:18:45 +01:00
parent 7bfc798a7d
commit 440bba257a
18 changed files with 845 additions and 84 deletions

View File

@@ -56,6 +56,11 @@ public:
CommunicationChannelUsb
};
enum DebugClient {
DebugClientTrk,
DebugClientCoda
};
DebuggerStartParameters()
: isSnapshot(false),
attachPID(-1),
@@ -68,8 +73,9 @@ public:
toolChainType(ProjectExplorer::ToolChain_UNKNOWN),
startMode(NoStartMode),
executableUid(0),
communicationChannel(CommunicationChannelTcpIp),
serverPort(0)
communicationChannel(CommunicationChannelUsb),
serverPort(0),
debugClient(DebugClientTrk)
{}
QString executable;
@@ -122,6 +128,7 @@ public:
CommunicationChannel communicationChannel;
QString serverAddress;
quint16 serverPort;
DebugClient debugClient;
};
} // namespace Debugger