1
0
forked from fsfw/fsfw

Relative Paths

This commit is contained in:
2020-08-13 20:53:35 +02:00
parent e535bc1427
commit d5dedce294
384 changed files with 2477 additions and 2477 deletions

View File

@ -1,4 +1,4 @@
#include <framework/globalfunctions/AsciiConverter.h>
#include "AsciiConverter.h"
#include <limits>
#include <cmath>

View File

@ -1,7 +1,7 @@
#ifndef ASCIICONVERTER_H_
#define ASCIICONVERTER_H_
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include "../returnvalues/HasReturnvaluesIF.h"
class AsciiConverter: public HasReturnvaluesIF {
public:

View File

@ -1,4 +1,4 @@
#include <framework/globalfunctions/CRC.h>
#include "CRC.h"
#include <math.h>
const uint16_t CRC::crc16ccitt_table[256] = {

View File

@ -1,4 +1,4 @@
#include <framework/globalfunctions/DleEncoder.h>
#include "DleEncoder.h"
DleEncoder::DleEncoder() {
}

View File

@ -1,7 +1,7 @@
#ifndef DLEENCODER_H_
#define DLEENCODER_H_
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include "../returnvalues/HasReturnvaluesIF.h"
class DleEncoder: public HasReturnvaluesIF {
private:

View File

@ -1,6 +1,6 @@
#include <framework/serialize/SerializeAdapter.h>
#include <framework/globalfunctions/Type.h>
#include <framework/serialize/SerializeAdapter.h>
#include "../serialize/SerializeAdapter.h"
#include "Type.h"
#include "../serialize/SerializeAdapter.h"
Type::Type() :
actualType(UNKNOWN_TYPE) {

View File

@ -1,8 +1,8 @@
#ifndef TYPE_H_
#define TYPE_H_
#include <framework/returnvalues/HasReturnvaluesIF.h>
#include <framework/serialize/SerializeIF.h>
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../serialize/SerializeIF.h"
class Type: public SerializeIF {
public:

View File

@ -1,5 +1,5 @@
#include <framework/globalfunctions/arrayprinter.h>
#include <framework/serviceinterface/ServiceInterfaceStream.h>
#include "arrayprinter.h"
#include "../serviceinterface/ServiceInterfaceStream.h"
#include <bitset>
void arrayprinter::print(const uint8_t *data, size_t size, OutputType type,

View File

@ -1,7 +1,7 @@
#ifndef BINARYMATCHER_H_
#define BINARYMATCHER_H_
#include <framework/globalfunctions/matching/MatcherIF.h>
#include "MatcherIF.h"
template<typename T>
class BinaryMatcher: public MatcherIF<T> {

View File

@ -1,7 +1,7 @@
#ifndef DECIMALMATCHER_H_
#define DECIMALMATCHER_H_
#include <framework/globalfunctions/matching/MatcherIF.h>
#include "MatcherIF.h"
template<typename T>
class DecimalMatcher: public MatcherIF<T> {

View File

@ -1,9 +1,9 @@
#ifndef FRAMEWORK_GLOBALFUNCTIONS_MATCHING_MATCHTREE_H_
#define FRAMEWORK_GLOBALFUNCTIONS_MATCHING_MATCHTREE_H_
#include <framework/container/BinaryTree.h>
#include <framework/globalfunctions/matching/SerializeableMatcherIF.h>
#include <framework/serialize/SerializeAdapter.h>
#include "../../container/BinaryTree.h"
#include "SerializeableMatcherIF.h"
#include "../../serialize/SerializeAdapter.h"
template<typename T>
class MatchTree: public SerializeableMatcherIF<T>, public BinaryTree<

View File

@ -1,8 +1,8 @@
#ifndef RANGEMATCHER_H_
#define RANGEMATCHER_H_
#include <framework/globalfunctions/matching/SerializeableMatcherIF.h>
#include <framework/serialize/SerializeAdapter.h>
#include "SerializeableMatcherIF.h"
#include "../../serialize/SerializeAdapter.h"
template<typename T>
class RangeMatcher: public SerializeableMatcherIF<T> {

View File

@ -1,8 +1,8 @@
#ifndef FRAMEWORK_GLOBALFUNCTIONS_MATCHING_SERIALIZEABLEMATCHERIF_H_
#define FRAMEWORK_GLOBALFUNCTIONS_MATCHING_SERIALIZEABLEMATCHERIF_H_
#include <framework/globalfunctions/matching/MatcherIF.h>
#include <framework/serialize/SerializeIF.h>
#include "MatcherIF.h"
#include "../../serialize/SerializeIF.h"
template<typename T>
class SerializeableMatcherIF : public MatcherIF<T>, public SerializeIF {

View File

@ -1,5 +1,5 @@
#include "QuaternionOperations.h"
#include <framework/globalfunctions/math/VectorOperations.h>
#include "VectorOperations.h"
#include <cmath>
#include <cstring>

View File

@ -1,4 +1,4 @@
#include <framework/globalfunctions/timevalOperations.h>
#include "timevalOperations.h"
timeval& operator+=(timeval& lhs, const timeval& rhs) {
int64_t sum = lhs.tv_sec * 1000000. + lhs.tv_usec;