summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-02-22 07:51:26 +0000
committerChristian Pointner <equinox@anytun.org>2009-02-22 07:51:26 +0000
commit5850046cf4bf3146c7da097f9ff3dec01459b640 (patch)
tree112fc3503c379be693b7b4cf88adba102312e924 /src/log.h
parentreplaced regular throws with AnytunError::thowErr (diff)
moved LogErrno to AnytunErrno
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/log.h b/src/log.h
index 56ca5ae..cd83e84 100644
--- a/src/log.h
+++ b/src/log.h
@@ -43,30 +43,6 @@
#include "threadUtils.hpp"
-#define STERROR_TEXT_MAX 200
-
-#ifndef NO_CRYPT
-#ifndef USE_SSL_CRYPTO
-#include <gcrypt.h>
-
-class LogGpgError
-{
-public:
- LogGpgError(gcry_error_t e) : err_(e) {};
- gcry_error_t err_;
-};
-std::ostream& operator<<(std::ostream& stream, LogGpgError const& value);
-#endif
-#endif
-
-class LogErrno
-{
-public:
- LogErrno(system_error_t e) : err_(e) {};
- system_error_t err_;
-};
-std::ostream& operator<<(std::ostream& stream, LogErrno const& value);
-
class Log;
class LogStringBuilder