dyaml/dyaml/encoding.d
Ferdinand Majerech 765b74ffca Updated the API documentation.
Updated examples based on the new Loader API.
(Dumper API still needs examples)
2011-10-14 10:34:53 +02:00

20 lines
406 B
D

// 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)
module dyaml.encoding;
///Text encodings supported by D:YAML.
enum Encoding : ubyte
{
///Unicode UTF-8
UTF_8,
///Unicode UTF-16
UTF_16,
///Unicode UTF-32
UTF_32
}