mirror of https://github.com/status-im/NimYAML.git
Added copyright notices to files where missing
This commit is contained in:
parent
56d49ec308
commit
5933605591
|
@ -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 newYamlNode*(content: string, tag: string = "?"): YamlNode =
|
proc newYamlNode*(content: string, tag: string = "?"): YamlNode =
|
||||||
new(result)
|
new(result)
|
||||||
result.kind = yScalar
|
result.kind = yScalar
|
||||||
|
|
|
@ -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 initRefNodeData(p: pointer): RefNodeData =
|
proc initRefNodeData(p: pointer): RefNodeData =
|
||||||
result.p = p
|
result.p = p
|
||||||
result.count = 1
|
result.count = 1
|
||||||
|
|
|
@ -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 initYamlStream*(backend: iterator(): YamlStreamEvent): YamlStream =
|
proc initYamlStream*(backend: iterator(): YamlStreamEvent): YamlStream =
|
||||||
result.peeked = false
|
result.peeked = false
|
||||||
result.backend = backend
|
result.backend = backend
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
import "../yaml"
|
import "../yaml"
|
||||||
|
|
||||||
proc printDifference*(expected, actual: YamlStreamEvent) =
|
proc printDifference*(expected, actual: YamlStreamEvent) =
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
import "../yaml"
|
import "../yaml"
|
||||||
|
|
||||||
import unittest, json
|
import unittest, json
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
import "../yaml"
|
import "../yaml"
|
||||||
import unittest, common
|
import unittest, common
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
import "../yaml"
|
import "../yaml"
|
||||||
|
|
||||||
import unittest, common
|
import unittest, common
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
import "../yaml"
|
import "../yaml"
|
||||||
import unittest, strutils
|
import unittest, strutils
|
||||||
|
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
|
# NimYAML - YAML implementation in Nim
|
||||||
|
# (c) Copyright 2015 Felix Krause
|
||||||
|
#
|
||||||
|
# See the file "copying.txt", included in this
|
||||||
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
import parsing, constructingJson, serializing, dom
|
import parsing, constructingJson, serializing, dom
|
Loading…
Reference in New Issue