Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net) |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame^] | 3 | * Copyright 2020-present Open Networking Foundation |
| 4 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 5 | * 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 |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame^] | 8 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame^] | 10 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 11 | * 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 | */ |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame^] | 17 | /* |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 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 | */ |
| 23 | |
| 24 | // Package generated provides code-generated OMCI types |
| 25 | package 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 | |
| 30 | // VersionInfo provides information on the parser/generator version used to create |
| 31 | // the generated data as well as the time of code generation |
| 32 | type 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 | |
| 40 | // Version provides version information of this generated cooe |
| 41 | var Versions []VersionInfo |
| 42 | |
| 43 | func init() { |
| 44 | Versions = make([]VersionInfo, 0) |
| 45 | |
| 46 | Versions = append(Versions, |
| 47 | VersionInfo{ |
| 48 | Name: "parser", |
| 49 | Version: "0.15.1", |
| 50 | CreateTime: 1581434999.76667, |
| 51 | ItuDocName: "T-REC-G.988-2017-11.docx", |
| 52 | SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac", |
| 53 | }) |
| 54 | |
| 55 | Versions = append(Versions, |
| 56 | VersionInfo{ |
| 57 | Name: "pre-parser", |
| 58 | Version: "0.12.2", |
| 59 | CreateTime: 1574973863.791287, |
| 60 | ItuDocName: "T-REC-G.988-2017-11.docx", |
| 61 | SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac", |
| 62 | }) |
| 63 | |
| 64 | Versions = append(Versions, |
| 65 | VersionInfo{ |
| 66 | Name: "code-generator", |
| 67 | Version: "0.15.1", |
| 68 | CreateTime: 1581435018.598259, |
| 69 | ItuDocName: "T-REC-G.988-2017-11.docx", |
| 70 | SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac", |
| 71 | }) |
| 72 | } |