~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/jabber_whiteboard/message-verifier.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __INKSCAPE_WHITEBOARD_MESSAGE_VERIFIER_H__
 
2
#define __INKSCAPE_WHITEBOARD_MESSAGE_VERIFIER_H__
 
3
 
 
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
 */
 
15
 
 
16
namespace Inkscape {
 
17
 
 
18
namespace Whiteboard {
 
19
 
 
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
  */
 
26
 
 
27
enum MessageValidityTestResult {
 
28
        RESULT_VALID,
 
29
        RESULT_INVALID
 
30
};
 
31
 
 
32
}
 
33
 
 
34
}
 
35
 
 
36
#endif
 
37
 
 
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:encoding=utf-8:textwidth=99 :