summaryrefslogtreecommitdiff
path: root/xsd-examples/cxx/parser/mixed/anchor.hxx
blob: 6cc6cd46c2e741578afd161deb1fbe894ab3ee53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// file      : cxx/parser/mixed/anchor.hxx
// copyright : not copyrighted - public domain

#ifndef ANCHOR_HXX
#define ANCHOR_HXX

#include <string>

struct anchor
{
  anchor (const std::string& text, const std::string& uri)
      : uri_ (uri), text_ (text)
  {
  }

  const std::string&
  text () const
  {
    return text_;
  }

  const std::string&
  uri () const
  {
    return uri_;
  }

private:
  std::string uri_;
  std::string text_;
};

#endif // ANCHOR_HXX