1 #ifndef __INKSCAPE_WHITEBOARD_MESSAGE_VERIFIER_H__
2 #define __INKSCAPE_WHITEBOARD_MESSAGE_VERIFIER_H__
4 /**
5 * Inkscape::Whiteboard::MessageVerifier -- performs basic XMPP-related
6 * validity checks on incoming messages
7 *
8 * Authors:
9 * David Yip <yipdw@alumni.rose-hulman.edu>
10 *
11 * Copyright (c) 2006 Authors
12 *
13 * Released under GNU GPL, read the file 'COPYING' for more information
14 */
16 namespace Inkscape {
18 namespace Whiteboard {
20 /**
21 * The class has been written, but I forgot to commit that file to SVN,
22 * and the only other copy I have is on a computer that I do not currently
23 * have access to. So, for now, this is just a placeholder with enums
24 * to get things working.
25 */
27 enum MessageValidityTestResult {
28 RESULT_VALID,
29 RESULT_INVALID
30 };
32 }
34 }
36 #endif
38 /*
39 Local Variables:
40 mode:c++
41 c-file-style:"stroustrup"
42 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
43 indent-tabs-mode:nil
44 fill-column:99
45 End:
46 */
47 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :