summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opensp/opensp/attributevalue.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/opensp/opensp/attributevalue.patch')
-rw-r--r--meta/recipes-devtools/opensp/opensp/attributevalue.patch65
1 files changed, 0 insertions, 65 deletions
diff --git a/meta/recipes-devtools/opensp/opensp/attributevalue.patch b/meta/recipes-devtools/opensp/opensp/attributevalue.patch
deleted file mode 100644
index 92f5898f47..0000000000
--- a/meta/recipes-devtools/opensp/opensp/attributevalue.patch
+++ /dev/null
@@ -1,65 +0,0 @@
1Patch obtained from OpenEmbedded.
2
3Upstream-Status: Pending
4
5Signed-off-by: Scott Garman <scott.a.garman@intel.com>
6
7--- OpenSP-1.5/include/Attribute.h~attributevalue 2000-03-09 13:30:56.000000000 -0500
8+++ OpenSP-1.5/include/Attribute.h 2004-01-20 14:11:36.000000000 -0500
9@@ -31,6 +31,28 @@
10 class AttributeContext;
11 class Syntax;
12
13+class SP_API AttributeValue : public Resource {
14+public:
15+ enum Type {
16+ implied,
17+ cdata,
18+ tokenized
19+ };
20+ AttributeValue();
21+ virtual ~AttributeValue();
22+ virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
23+ AttributeContext &,
24+ const StringC &,
25+ unsigned &,
26+ unsigned &) const;
27+ virtual Type info(const Text *&, const StringC *&) const = 0;
28+ virtual const Text *text() const;
29+ virtual Boolean recoverUnquoted(const StringC &, const Location &,
30+ AttributeContext &, const StringC &);
31+ static Boolean handleAsUnterminated(const Text &, AttributeContext &);
32+};
33+
34+
35 class SP_API AttributeDefinitionDesc {
36 public:
37 AttributeDefinitionDesc() { }
38@@ -380,27 +402,6 @@
39 ConstPtr<Notation> notation_;
40 };
41
42-class SP_API AttributeValue : public Resource {
43-public:
44- enum Type {
45- implied,
46- cdata,
47- tokenized
48- };
49- AttributeValue();
50- virtual ~AttributeValue();
51- virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
52- AttributeContext &,
53- const StringC &,
54- unsigned &,
55- unsigned &) const;
56- virtual Type info(const Text *&, const StringC *&) const = 0;
57- virtual const Text *text() const;
58- virtual Boolean recoverUnquoted(const StringC &, const Location &,
59- AttributeContext &, const StringC &);
60- static Boolean handleAsUnterminated(const Text &, AttributeContext &);
61-};
62-
63 class SP_API ImpliedAttributeValue : public AttributeValue {
64 public:
65 ImpliedAttributeValue();