You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2023/02/18 17:09:58 UTC

[plc4x-build-tools] branch develop updated: chore(driver/eip): Added a ByteOrderTypeReference

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git


The following commit(s) were added to refs/heads/develop by this push:
     new 646b63e  chore(driver/eip): Added a ByteOrderTypeReference
646b63e is described below

commit 646b63e6f12fb0d38e245a9087a6d1ee0cac7dac
Author: Christofer Dutz <ch...@rivian.com>
AuthorDate: Sat Feb 18 18:09:41 2023 +0100

    chore(driver/eip): Added a ByteOrderTypeReference
---
 .../types/references/ByteOrderTypeReference.java   | 24 ++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/ByteOrderTypeReference.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/ByteOrderTypeReference.java
new file mode 100644
index 0000000..9d46e11
--- /dev/null
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/ByteOrderTypeReference.java
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.plc4x.plugins.codegenerator.types.references;
+
+public interface ByteOrderTypeReference extends TypeReference {
+
+}