summaryrefslogtreecommitdiff
path: root/examples/cxx/parser/mixed/anchor.hxx
blob: bc1b54d729ab64baa0cae709c813928c9e8256d3 (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
34
// file      : examples/cxx/parser/mixed/anchor.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// 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