blob: df6ae9977e2723f607a76c832fefa57eb0606ad2 [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17/*
18 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
24// Package generated provides code-generated OMCI types
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070025package generated
26
27// This file is used to track the version(s) of code used to parse the ITU
28// document and create the generated code.
29
Matteo Scandolof9d43412021-01-12 11:11:34 -080030// VersionInfo provides information on the parser/generator version used to create
31// the generated data as well as the time of code generation
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070032type VersionInfo struct {
33 Name string // Type (pre-parser, parser, code-generator)
34 Version string // Version of parser project
35 CreateTime float32 // UTC linux time when ran
36 ItuDocName string // ITU G.988 document name
37 SHA256 string // ITU G.988 document SHA-256 hash
38}
39
Matteo Scandolof9d43412021-01-12 11:11:34 -080040// Version provides version information of this generated cooe
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070041var Versions []VersionInfo
42
43func init() {
44 Versions = make([]VersionInfo, 0)
45
46 Versions = append(Versions,
47 VersionInfo{
48 Name: "parser",
Holger Hildebrandt73c447b2023-03-16 13:46:44 +000049 Version: "0.16.1",
50 CreateTime: 1674166144.2428687,
Andrea Campanella10426e22021-10-15 17:58:04 +020051 ItuDocName: "T-REC-G.988-202003-I!Amd3!MSW-E.docx",
52 SHA256: "084f5265bc090ca882fe45f6844d1ce368c218e52c77795060b7643240885469",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053 })
54
55 Versions = append(Versions,
56 VersionInfo{
57 Name: "pre-parser",
Holger Hildebrandt73c447b2023-03-16 13:46:44 +000058 Version: "0.16.1",
59 CreateTime: 1674166096.8488169,
Andrea Campanella10426e22021-10-15 17:58:04 +020060 ItuDocName: "T-REC-G.988-202003-I!Amd3!MSW-E.docx",
61 SHA256: "084f5265bc090ca882fe45f6844d1ce368c218e52c77795060b7643240885469",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070062 })
63
64 Versions = append(Versions,
65 VersionInfo{
66 Name: "code-generator",
Holger Hildebrandt73c447b2023-03-16 13:46:44 +000067 Version: "0.16.1",
68 CreateTime: 1674166174.5876794,
Andrea Campanella10426e22021-10-15 17:58:04 +020069 ItuDocName: "T-REC-G.988-202003-I!Amd3!MSW-E.docx",
70 SHA256: "084f5265bc090ca882fe45f6844d1ce368c218e52c77795060b7643240885469",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070071 })
72}