summaryrefslogtreecommitdiffstats
path: root/src/jabber_whiteboard/error-codes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jabber_whiteboard/error-codes.h')
-rw-r--r--src/jabber_whiteboard/error-codes.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/jabber_whiteboard/error-codes.h b/src/jabber_whiteboard/error-codes.h
new file mode 100644
index 000000000..e5c6268fa
--- /dev/null
+++ b/src/jabber_whiteboard/error-codes.h
@@ -0,0 +1,41 @@
+/**
+ * Whiteboard session manager
+ * Error codes
+ *
+ * Authors:
+ * David Yip <yipdw@rose-hulman.edu>
+ *
+ * Copyright (c) 2005 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#ifndef __WHITEBOARD_JABBER_ERROR_CODES_H__
+#define __WHITEBOARD_JABBER_ERROR_CODES_H__
+
+namespace Inkscape {
+
+namespace Whiteboard {
+
+namespace ErrorCodes {
+
+static unsigned int const SERVER_CONNECT_FAILED = 502;
+static unsigned int const CHAT_HANDLE_IN_USE = 409;
+
+}
+
+}
+
+}
+#endif
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :