Skip to content

Commit 6ec3f62

Browse files
committed
2 parents 40367a2 + e5b27fc commit 6ec3f62

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ project(iRC_App_API
1010
VERSION 14.6.7
1111
LANGUAGES C CXX
1212
)
13-
# Version suffix, should be empty for release versions
14-
set(PROJECT_VERSION_SUFFIX "")
1513
# Life cycle information for the SBOM
1614
set(RELEASE_DATE "2026-05-08")
1715
set(SUPPORT_PERIOD_END "2000-00-00") # TODO: define support period
1816
set(END_OF_LIFE "2000-00-00") # TODO: define end of life
19-
configure_file(src/Version.h.in src/Version.h)
17+
configure_file(src/APIVersion.h.in src/APIVersion.h)
2018
configure_file(sbomify.json.in sbomify.json)
2119

2220
set(THREADS_PREFER_PTHREAD_FLAG ON)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# iRC App Interface Client API for C++
2+
[![Build and Test for Linux](https://github.com/CommonplaceRobotics/AppAPI_CPP/actions/workflows/build_linux.yml/badge.svg)](https://github.com/CommonplaceRobotics/AppAPI_CPP/actions/workflows/build_linux.yml)
3+
[![Build and Test for Windows](https://github.com/CommonplaceRobotics/AppAPI_CPP/actions/workflows/build_windows.yml/badge.svg)](https://github.com/CommonplaceRobotics/AppAPI_CPP/actions/workflows/build_windows.yml)
24

35
This library provides a simple C++ interface to the igus Robot Control. It provides functions for observing the state of the robot, issuing motion commands, controlling robot programs, accessing files, updating and handling events from the app user interface, receiving commands from robot programs ("app commands") and much more.
46

File renamed without changes.

src/AppClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#pragma once
99

10-
#include <Version.h>
10+
#include <APIVersion.h>
1111
#include <grpc/grpc.h>
1212

1313
#include <atomic>

src/DataTypes/Matrix44.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class Matrix44 {
140140
*/
141141
robotcontrolapp::Matrix44 ToGrpc() const;
142142

143-
private:
143+
protected:
144144
// Contains the matrix data
145145
std::array<double, 16> m_data;
146146
};

0 commit comments

Comments
 (0)