~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/WP3SingleByteFunction.h

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2006-07-15 11:58:12 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060715115812-v18efmdayby4clau
Tags: 0.8.6-1
* New upstream release
* swap maintainer/uploader

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
class WP3HardSpaceFunction : public WP3SingleByteFunction
39
39
{
40
40
public:
41
 
        virtual void parse(WP3Listener *listener);      
 
41
        void parse(WP3Listener *listener);      
42
42
};
43
43
 
44
44
class WP3EOLFunction : public WP3SingleByteFunction
45
45
{
46
46
public:
47
 
        virtual void parse(WP3Listener *listener);      
 
47
        void parse(WP3Listener *listener);      
48
48
};
49
49
 
50
50
class WP3EOPFunction : public WP3SingleByteFunction
51
51
{
52
52
public:
53
 
        virtual void parse(WP3Listener *listener);      
 
53
        void parse(WP3Listener *listener);      
54
54
};
55
55
 
56
56
class WP3HyphenFunction : public WP3SingleByteFunction
57
57
{
58
58
public:
59
 
        virtual void parse(WP3Listener *listener);      
 
59
        void parse(WP3Listener *listener);      
60
60
};
61
61
 
62
62
class WP3SoftHyphenFunction : public WP3SingleByteFunction
63
63
{
64
64
public:
65
 
        virtual void parse(WP3Listener *listener);      
 
65
        void parse(WP3Listener *listener);      
66
66
};
67
67
 
68
68
#endif /* WP3SINGLEBYTEFUNCTION_H */