aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ext_depends/D-YAML/source/dyaml/tagdirective.d
blob: 54687fe9113e9e191348fa6d08a4364d4a2a7c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//          Copyright Ferdinand Majerech 2011.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

///Tag directives.
module dyaml.tagdirective;

///Single tag directive. handle is the shortcut, prefix is the prefix that replaces it.
struct TagDirective
{
    string handle;
    string prefix;
}