summaryrefslogtreecommitdiff
path: root/src/test/commonapi/tests/DerivedTypeCollection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/commonapi/tests/DerivedTypeCollection.cpp')
-rw-r--r--src/test/commonapi/tests/DerivedTypeCollection.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/test/commonapi/tests/DerivedTypeCollection.cpp b/src/test/commonapi/tests/DerivedTypeCollection.cpp
index 5b5ca7b..865ebae 100644
--- a/src/test/commonapi/tests/DerivedTypeCollection.cpp
+++ b/src/test/commonapi/tests/DerivedTypeCollection.cpp
@@ -1,9 +1,11 @@
/*
-* This file was generated by the CommonAPI Generators.
+* This file was generated by the CommonAPI Generators.
+* Used org.genivi.commonapi.core 2.1.0.qualifier.
+* Used org.franca.core 0.8.9.201308271211.
*
-* This Source Code Form is subject to the terms of the Mozilla Public
-* License, v. 2.0. If a copy of the MPL was not distributed with this
-* file, You can obtain one at http://mozilla.org/MPL/2.0/.
+* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+* If a copy of the MPL was not distributed with this file, You can obtain one at
+* http://mozilla.org/MPL/2.0/.
*/
#include "DerivedTypeCollection.h"
@@ -12,6 +14,8 @@ namespace commonapi {
namespace tests {
namespace DerivedTypeCollection {
+
+
TestStructExtended::TestStructExtended(const PredefinedTypeCollection::TestString& testStringValue, const uint16_t& uintValueValue, const TestEnumExtended2& testEnumExtended2Value):
TestStruct(testStringValue, uintValueValue),
testEnumExtended2(testEnumExtended2Value)
@@ -38,6 +42,14 @@ void TestStructExtended::writeToOutputStream(CommonAPI::OutputStream& outputStre
TestStruct::writeToOutputStream(outputStream);
outputStream << testEnumExtended2;
}
+
+
+
+
+
+
+
+
TestStruct::TestStruct(const PredefinedTypeCollection::TestString& testStringValue, const uint16_t& uintValueValue):
testString(testStringValue),
uintValue(uintValueValue)