mirror of https://github.com/status-im/NimYAML.git
Added copyright header to files in private/
This commit is contained in:
parent
7a5dd48188
commit
7b6d9d18c5
|
@ -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,
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue