-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Refs #18627: Add BlackBoxTest Signed-off-by: Mario Dominguez <[email protected]> * Refs #18627: Add Fix Signed-off-by: Mario Dominguez <[email protected]> * Refs #18627: Linter Signed-off-by: Mario Dominguez <[email protected]> --------- Signed-off-by: Mario Dominguez <[email protected]> (cherry picked from commit b8d40e9) Co-authored-by: Mario Domínguez López <[email protected]>
- Loading branch information
1 parent
9f41cca
commit f09ff93
Showing
15 changed files
with
1,441 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed 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. | ||
|
||
/*! | ||
* @file TestIncludeRegression3361.cpp | ||
* This source file contains the definition of the described types in the IDL file. | ||
* | ||
* This file was generated by the tool gen. | ||
*/ | ||
|
||
#ifdef _WIN32 | ||
// Remove linker warning LNK4221 on Visual Studio | ||
namespace { | ||
char dummy; | ||
} // namespace | ||
#endif // _WIN32 | ||
|
||
#include "TestIncludeRegression3361.h" | ||
#include <fastcdr/Cdr.h> | ||
|
||
#include <fastcdr/exceptions/BadParamException.h> | ||
using namespace eprosima::fastcdr::exception; | ||
|
||
#include <utility> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). | ||
// | ||
// Licensed 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. | ||
|
||
/*! | ||
* @file TestIncludeRegression3361.h | ||
* This header file contains the declaration of the described types in the IDL file. | ||
* | ||
* This file was generated by the tool gen. | ||
*/ | ||
|
||
#ifndef _FAST_DDS_GENERATED_TESTINCLUDEREGRESSION3361_H_ | ||
#define _FAST_DDS_GENERATED_TESTINCLUDEREGRESSION3361_H_ | ||
|
||
|
||
#include <fastrtps/utils/fixed_size_string.hpp> | ||
|
||
#include <stdint.h> | ||
#include <array> | ||
#include <string> | ||
#include <vector> | ||
#include <map> | ||
#include <bitset> | ||
|
||
#if defined(_WIN32) | ||
#if defined(EPROSIMA_USER_DLL_EXPORT) | ||
#define eProsima_user_DllExport __declspec( dllexport ) | ||
#else | ||
#define eProsima_user_DllExport | ||
#endif // EPROSIMA_USER_DLL_EXPORT | ||
#else | ||
#define eProsima_user_DllExport | ||
#endif // _WIN32 | ||
|
||
#if defined(_WIN32) | ||
#if defined(EPROSIMA_USER_DLL_EXPORT) | ||
#if defined(TestIncludeRegression3361_SOURCE) | ||
#define TestIncludeRegression3361_DllAPI __declspec( dllexport ) | ||
#else | ||
#define TestIncludeRegression3361_DllAPI __declspec( dllimport ) | ||
#endif // TestIncludeRegression3361_SOURCE | ||
#else | ||
#define TestIncludeRegression3361_DllAPI | ||
#endif // EPROSIMA_USER_DLL_EXPORT | ||
#else | ||
#define TestIncludeRegression3361_DllAPI | ||
#endif // _WIN32 | ||
|
||
namespace eprosima { | ||
namespace fastcdr { | ||
class Cdr; | ||
} // namespace fastcdr | ||
} // namespace eprosima | ||
|
||
|
||
namespace TestModule { | ||
typedef std::string MACHINEID; | ||
} // namespace TestModule | ||
|
||
#endif // _FAST_DDS_GENERATED_TESTINCLUDEREGRESSION3361_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef TESTINCLUDE_REGRESSION_3361 | ||
#define TESTINCLUDE_REGRESSION_3361 | ||
|
||
module TestModule { | ||
|
||
typedef string MACHINEID; | ||
|
||
}; | ||
|
||
#endif // TESTINCLUDE_REGRESSION_3361 |
Oops, something went wrong.