summaryrefslogtreecommitdiff
path: root/automation/inc/automation
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-19 22:18:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-19 22:18:43 +0100
commitdaadeb5e216dc531c0c16e78cdd61d7a394acf7f (patch)
tree4df72b69d75b5538bcf0684ff46b8ad57739ddf0 /automation/inc/automation
parente63e78713d14ee8523b4b1810e7de233ebf244b8 (diff)
remove unused ByteString using methods
Diffstat (limited to 'automation/inc/automation')
-rw-r--r--automation/inc/automation/communi.hxx1
-rw-r--r--automation/inc/automation/simplecm.hxx16
2 files changed, 0 insertions, 17 deletions
diff --git a/automation/inc/automation/communi.hxx b/automation/inc/automation/communi.hxx
index 2c8ac15b6bd8..68cb3cbeaf21 100644
--- a/automation/inc/automation/communi.hxx
+++ b/automation/inc/automation/communi.hxx
@@ -164,7 +164,6 @@ class CommunicationManagerClientViaSocket : public CommunicationManagerClient, C
public:
using CommunicationManager::StartCommunication;
- CommunicationManagerClientViaSocket( ByteString aHost, sal_uLong nPort, sal_Bool bUseMultiChannel = sal_False );
CommunicationManagerClientViaSocket( sal_Bool bUseMultiChannel = sal_False );
virtual ~CommunicationManagerClientViaSocket();
diff --git a/automation/inc/automation/simplecm.hxx b/automation/inc/automation/simplecm.hxx
index dd522cb3beeb..ff93ee8ae209 100644
--- a/automation/inc/automation/simplecm.hxx
+++ b/automation/inc/automation/simplecm.hxx
@@ -366,22 +366,6 @@ protected:
virtual CommunicationLink *CreateCommunicationLink( CommunicationManager *pCM, osl::ConnectorSocket* pCS )=0;
};
-class SingleCommunicationManagerClientViaSocket : public SingleCommunicationManager, public ICommunicationManagerClient, CommonSocketFunctions
-{
-public:
- using CommunicationManager::StartCommunication;
-
- SingleCommunicationManagerClientViaSocket( ByteString aHost, sal_uLong nPort, sal_Bool bUseMultiChannel = sal_False );
- SingleCommunicationManagerClientViaSocket( sal_Bool bUseMultiChannel = sal_False );
- virtual sal_Bool StartCommunication(){ return DoStartCommunication( this, (ICommunicationManagerClient*) this, aHostToTalk, nPortToTalk );}
- virtual sal_Bool StartCommunication( ByteString aHost, sal_uLong nPort ){ return DoStartCommunication( this, (ICommunicationManagerClient*) this, aHost, nPort );}
-private:
- ByteString aHostToTalk;
- sal_uLong nPortToTalk;
-protected:
- virtual CommunicationLink *CreateCommunicationLink( CommunicationManager *pCM, osl::ConnectorSocket* pCS ){ return new SimpleCommunicationLinkViaSocketWithReceiveCallbacks( pCM, pCS ); }
-};
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */