From fb72ac689ca4832fca215edc942ae01592ecfff8 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 7 Dec 2009 11:46:13 +0100 Subject: *: remove most of remaining const string& params Signed-off-by: Denys Vlasenko --- src/CLI/ABRTSocket.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/CLI') diff --git a/src/CLI/ABRTSocket.h b/src/CLI/ABRTSocket.h index 5d5383f..536e4b5 100644 --- a/src/CLI/ABRTSocket.h +++ b/src/CLI/ABRTSocket.h @@ -10,20 +10,20 @@ class CABRTSocket private: int m_nSocket; - void Send(const std::string& pMessage); + void Send(const char *pMessage); void Recv(std::string& pMessage); public: CABRTSocket(); ~CABRTSocket(); - void Connect(const std::string& pPath); + void Connect(const char *pPath); void Disconnect(); vector_crash_infos_t GetCrashInfos(); - map_crash_report_t CreateReport(const std::string& pUUID); + map_crash_report_t CreateReport(const char *pUUID); void Report(const map_crash_report_t& pReport); - void DeleteDebugDump(const std::string& pUUID); + void DeleteDebugDump(const char *pUUID); }; #endif /* ABRTSOCKET_H_ */ -- cgit