blob: 3adc90b43bed77b3b0e1049eb102797b2473a3b8 (
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 : examples/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
|