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
|
type
|
||||||
DumperState = enum
|
DumperState = enum
|
||||||
dBlockExplicitMapKey, dBlockExplicitMapValue, dBlockImplicitMapKey,
|
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
|
type
|
||||||
Level = tuple[node: JsonNode, key: string]
|
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
|
type
|
||||||
Encoding = enum
|
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
|
type
|
||||||
YamlParserState = enum
|
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 =
|
proc initTagLibrary*(): YamlTagLibrary =
|
||||||
result.tags = initTable[string, TagId]()
|
result.tags = initTable[string, TagId]()
|
||||||
result.nextCustomTagId = yFirstCustomTagId
|
result.nextCustomTagId = yFirstCustomTagId
|
||||||
|
|
Loading…
Reference in New Issue