| 29 | |
| 30 | |
| 31 | def print_header(): |
| 32 | print( |
| 33 | """ |
| 34 | /* |
| 35 | Licensed to the Apache Software Foundation (ASF) under one |
| 36 | or more contributor license agreements. See the NOTICE file |
| 37 | distributed with this work for additional information |
| 38 | regarding copyright ownership. The ASF licenses this file |
| 39 | to you under the Apache License, Version 2.0 (the |
| 40 | "License"); you may not use this file except in compliance |
| 41 | with the License. You may obtain a copy of the License at |
| 42 | |
| 43 | http://www.apache.org/licenses/LICENSE-2.0 |
| 44 | |
| 45 | Unless required by applicable law or agreed to in writing, software |
| 46 | distributed under the License is distributed on an "AS IS" BASIS, |
| 47 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 48 | See the License for the specific language governing permissions and |
| 49 | limitations under the License. |
| 50 | */ |
| 51 | |
| 52 | /* |
| 53 | THIS FILE IS AUTOGENERATED, DO NOT EDIT |
| 54 | |
| 55 | Regenerate this file with the 'generate-cripts-config' target. Remember |
| 56 | to run the format target on the generated file as well. |
| 57 | */ |
| 58 | #pragma once |
| 59 | |
| 60 | #include "cripts/ConfigsBase.hpp" |
| 61 | |
| 62 | namespace cripts |
| 63 | { |
| 64 | """) |
| 65 | |
| 66 | |
| 67 | def print_footer(): |