summaryrefslogtreecommitdiffstats
path: root/src/TUI/ABRTSocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/TUI/ABRTSocket.h')
-rw-r--r--src/TUI/ABRTSocket.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/TUI/ABRTSocket.h b/src/TUI/ABRTSocket.h
deleted file mode 100644
index 6e8a777..0000000
--- a/src/TUI/ABRTSocket.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef ABRTSOCKET_H_
-#define ABRTSOCKET_H_
-
-#include <string>
-
-#include "CrashTypes.h"
-
-class CABRTSocket
-{
- private:
- int m_nSocket;
-
- void Send(const std::string& pMessage);
- void Recv(std::string& pMessage);
-
- public:
- CABRTSocket();
- ~CABRTSocket();
-
- void Connect(const std::string& pPath);
- void DisConnect();
-
- vector_crash_infos_t GetCrashInfos();
- map_crash_report_t CreateReport(const std::string& pUUID);
- void Report(map_crash_report_t pReport);
- void DeleteDebugDump(const std::string& pUUID);
-};
-
-#endif /* ABRTSOCKET_H_ */