Added copyright header to files in private/

This commit is contained in:
Felix Krause 2015-12-28 22:24:05 +01:00
parent 7a5dd48188
commit 7b6d9d18c5
5 changed files with 28 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# NimYAML - YAML implementation in Nim
# (c) Copyright 2015 Felix Krause
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
type
DumperState = enum
dBlockExplicitMapKey, dBlockExplicitMapValue, dBlockImplicitMapKey,

View File

@ -1,3 +1,9 @@
# NimYAML - YAML implementation in Nim
# (c) Copyright 2015 Felix Krause
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
type
Level = tuple[node: JsonNode, key: string]

View File

@ -1,4 +1,8 @@
# file must be included from yaml.nim and cannot compile on its own
# NimYAML - YAML implementation in Nim
# (c) Copyright 2015 Felix Krause
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
type
Encoding = enum

View File

@ -1,4 +1,8 @@
# file must be included from yaml.nim and cannot compile on its own
# NimYAML - YAML implementation in Nim
# (c) Copyright 2015 Felix Krause
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
type
YamlParserState = enum

View File

@ -1,3 +1,9 @@
# NimYAML - YAML implementation in Nim
# (c) Copyright 2015 Felix Krause
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
proc initTagLibrary*(): YamlTagLibrary =
result.tags = initTable[string, TagId]()
result.nextCustomTagId = yFirstCustomTagId