]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/opensp/opensp-1.5/attributevalue.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / opensp / opensp-1.5 / attributevalue.patch
1
2 #
3 # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4 #
5
6 --- OpenSP-1.5/include/Attribute.h~attributevalue       2000-03-09 13:30:56.000000000 -0500
7 +++ OpenSP-1.5/include/Attribute.h      2004-01-20 14:11:36.000000000 -0500
8 @@ -31,6 +31,28 @@
9  class AttributeContext;
10  class Syntax;
11  
12 +class SP_API AttributeValue : public Resource {
13 +public:
14 +  enum Type {
15 +    implied,
16 +    cdata,
17 +    tokenized
18 +    };
19 +  AttributeValue();
20 +  virtual ~AttributeValue();
21 +  virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
22 +                                           AttributeContext &,
23 +                                           const StringC &,
24 +                                           unsigned &,
25 +                                           unsigned &) const;
26 +  virtual Type info(const Text *&, const StringC *&) const = 0;
27 +  virtual const Text *text() const;
28 +  virtual Boolean recoverUnquoted(const StringC &, const Location &,
29 +                                 AttributeContext &, const StringC &);
30 +  static Boolean handleAsUnterminated(const Text &, AttributeContext &);
31 +};
32 +
33 +
34  class SP_API AttributeDefinitionDesc {
35  public:
36    AttributeDefinitionDesc() { }
37 @@ -380,27 +402,6 @@
38    ConstPtr<Notation> notation_;
39  };
40  
41 -class SP_API AttributeValue : public Resource {
42 -public:
43 -  enum Type {
44 -    implied,
45 -    cdata,
46 -    tokenized
47 -    };
48 -  AttributeValue();
49 -  virtual ~AttributeValue();
50 -  virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
51 -                                           AttributeContext &,
52 -                                           const StringC &,
53 -                                           unsigned &,
54 -                                           unsigned &) const;
55 -  virtual Type info(const Text *&, const StringC *&) const = 0;
56 -  virtual const Text *text() const;
57 -  virtual Boolean recoverUnquoted(const StringC &, const Location &,
58 -                                 AttributeContext &, const StringC &);
59 -  static Boolean handleAsUnterminated(const Text &, AttributeContext &);
60 -};
61 -
62  class SP_API ImpliedAttributeValue : public AttributeValue {
63  public:
64    ImpliedAttributeValue();