small tweaks

This commit is contained in:
Robin Müller 2020-12-14 11:09:53 +01:00
parent 7ace117c42
commit 073cd4f5e1
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#include "../globalfunctions/Type.h" #include "Type.h"
#include "../serialize/SerializeAdapter.h" #include "../serialize/SerializeAdapter.h"
Type::Type() : Type::Type() :

View File

@ -1,5 +1,5 @@
#ifndef TYPE_H_ #ifndef FSFW_GLOBALFUNCTIONS_TYPE_H_
#define TYPE_H_ #define FSFW_GLOBALFUNCTIONS_TYPE_H_
#include "../returnvalues/HasReturnvaluesIF.h" #include "../returnvalues/HasReturnvaluesIF.h"
#include "../serialize/SerializeIF.h" #include "../serialize/SerializeIF.h"
@ -95,4 +95,4 @@ struct PodTypeConversion<double> {
static const Type::ActualType_t type = Type::DOUBLE; static const Type::ActualType_t type = Type::DOUBLE;
}; };
#endif /* TYPE_H_ */ #endif /* FSFW_GLOBALFUNCTIONS_TYPE_H_ */