Skip to content
Snippets Groups Projects
Commit 0cc1f621 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add interface for C++/Python ARON conversion test

parent b40aa8f6
No related branches found
No related tags found
1 merge request!325Add to/fromAron() for one-sided optional and test utilities for C++/Python conversion
This commit is part of merge request !325. Comments created here will be created in the context of that merge request.
...@@ -108,6 +108,7 @@ set(SLICE_FILES ...@@ -108,6 +108,7 @@ set(SLICE_FILES
aron.ice aron.ice
aron/Aron.ice aron/Aron.ice
aron/test/AronConversionTestInterface.ice
armem.ice armem.ice
......
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* package SpeechX::aron_cpp_to_python_conv_test
* author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
* date 2023
* copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include <RobotAPI/interface/aron/Aron.ice>
module armarx { module aron { module test
{
module dto
{
struct TestAronConversionRequest
{
string aronClassName;
::armarx::aron::data::dto::Dict probe;
};
struct TestAronConversionResponse
{
bool success;
string errorMessage;
::armarx::aron::data::dto::Dict probe;
};
};
module dti
{
interface AronConversionTestInterface
{
dto::TestAronConversionResponse testAronConversion(dto::TestAronConversionRequest req);
};
};
};};};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment