include guard replacements
This commit is contained in:
parent
94884c2402
commit
3aa666633e
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_CSERVICE200MODECOMMANDING_H_
|
#ifndef FSFW_PUS_CSERVICE200MODECOMMANDING_H_
|
||||||
#define FRAMEWORK_PUS_CSERVICE200MODECOMMANDING_H_
|
#define FSFW_PUS_CSERVICE200MODECOMMANDING_H_
|
||||||
|
|
||||||
#include "../tmtcservices/CommandingServiceBase.h"
|
#include "../tmtcservices/CommandingServiceBase.h"
|
||||||
|
|
||||||
@ -82,4 +82,4 @@ private:
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FRAMEWORK_PUS_CSERVICE200MODECOMMANDING_H_ */
|
#endif /* FSFW_PUS_CSERVICE200MODECOMMANDING_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "../pus/Service2DeviceAccess.h"
|
#include "Service2DeviceAccess.h"
|
||||||
#include "../pus/servicepackets/Service2Packets.h"
|
#include "servicepackets/Service2Packets.h"
|
||||||
|
|
||||||
#include "../devicehandlers/DeviceHandlerIF.h"
|
#include "../devicehandlers/DeviceHandlerIF.h"
|
||||||
#include "../storagemanager/StorageManagerIF.h"
|
#include "../storagemanager/StorageManagerIF.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICE2DEVICEACCESS_H_
|
#ifndef FSFW_PUS_SERVICE2DEVICEACCESS_H_
|
||||||
#define FRAMEWORK_PUS_SERVICE2DEVICEACCESS_H_
|
#define FSFW_PUS_SERVICE2DEVICEACCESS_H_
|
||||||
|
|
||||||
#include "../objectmanager/SystemObjectIF.h"
|
#include "../objectmanager/SystemObjectIF.h"
|
||||||
#include "../devicehandlers/AcceptsDeviceResponsesIF.h"
|
#include "../devicehandlers/AcceptsDeviceResponsesIF.h"
|
||||||
@ -89,4 +89,4 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif /* MISSION_PUS_DEVICE2DEVICECOMMANDING_H_ */
|
#endif /* FSFW_PUS_DEVICE2DEVICECOMMANDING_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "../pus/Service5EventReporting.h"
|
#include "Service5EventReporting.h"
|
||||||
#include "../pus/servicepackets/Service5Packets.h"
|
#include "servicepackets/Service5Packets.h"
|
||||||
|
|
||||||
#include "../serviceinterface/ServiceInterfaceStream.h"
|
#include "../serviceinterface/ServiceInterfaceStream.h"
|
||||||
#include "../events/EventManagerIF.h"
|
#include "../events/EventManagerIF.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICE5EVENTREPORTING_H_
|
#ifndef FSFW_PUS_SERVICE5EVENTREPORTING_H_
|
||||||
#define FRAMEWORK_PUS_SERVICE5EVENTREPORTING_H_
|
#define FSFW_PUS_SERVICE5EVENTREPORTING_H_
|
||||||
|
|
||||||
#include "../tmtcservices/PusServiceBase.h"
|
#include "../tmtcservices/PusServiceBase.h"
|
||||||
#include "../events/EventMessage.h"
|
#include "../events/EventMessage.h"
|
||||||
@ -83,4 +83,4 @@ private:
|
|||||||
ReturnValue_t generateEventReport(EventMessage message);
|
ReturnValue_t generateEventReport(EventMessage message);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* MISSION_PUS_SERVICE5EVENTREPORTING_H_ */
|
#endif /* FSFW_PUS_SERVICE5EVENTREPORTING_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICE8FUNCTIONMANAGEMENT_H_
|
#ifndef FSFW_PUS_SERVICE8FUNCTIONMANAGEMENT_H_
|
||||||
#define FRAMEWORK_PUS_SERVICE8FUNCTIONMANAGEMENT_H_
|
#define FSFW_PUS_SERVICE8FUNCTIONMANAGEMENT_H_
|
||||||
|
|
||||||
#include "../action/ActionMessage.h"
|
#include "../action/ActionMessage.h"
|
||||||
#include "../tmtcservices/CommandingServiceBase.h"
|
#include "../tmtcservices/CommandingServiceBase.h"
|
||||||
@ -64,4 +64,4 @@ private:
|
|||||||
object_id_t objectId, ActionId_t actionId);
|
object_id_t objectId, ActionId_t actionId);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FRAMEWORK_PUS_SERVICE8FUNCTIONMANAGEMENT_H_ */
|
#endif /* FSFW_PUS_SERVICE8FUNCTIONMANAGEMENT_H_ */
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
#ifndef FSFW_PUS_SERVICEPACKETS_SERVICE1PACKETS_H_
|
||||||
|
#define FSFW_PUS_SERVICEPACKETS_SERVICE1PACKETS_H_
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @defgroup spacepackets PUS Packet Definitions
|
* @defgroup spacepackets PUS Packet Definitions
|
||||||
* This group contains all implemented TM or TM packages that are sent to
|
* This group contains all implemented TM or TM packages that are sent to
|
||||||
@ -5,9 +8,6 @@
|
|||||||
* packet structures in Mission Information Base (MIB).
|
* packet structures in Mission Information Base (MIB).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef MISSION_PUS_SERVICEPACKETS_SERVICE1PACKETS_H_
|
|
||||||
#define MISSION_PUS_SERVICEPACKETS_SERVICE1PACKETS_H_
|
|
||||||
|
|
||||||
#include "../../serialize/SerializeAdapter.h"
|
#include "../../serialize/SerializeAdapter.h"
|
||||||
#include "../../tmtcservices/VerificationCodes.h"
|
#include "../../tmtcservices/VerificationCodes.h"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_
|
#ifndef FSFW_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_
|
||||||
#define FRAMEWORK_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_
|
#define FSFW_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_
|
||||||
|
|
||||||
#include "../../serialize/SerialLinkedListAdapter.h"
|
#include "../../serialize/SerialLinkedListAdapter.h"
|
||||||
#include "../../modes/ModeMessage.h"
|
#include "../../modes/ModeMessage.h"
|
||||||
@ -60,4 +60,4 @@ public:
|
|||||||
SerializeElement<ReturnValue_t> reason; //!< [EXPORT] : [COMMENT] Reason the mode could not be reached
|
SerializeElement<ReturnValue_t> reason; //!< [EXPORT] : [COMMENT] Reason the mode could not be reached
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FRAMEWORK_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_ */
|
#endif /* FSFW_PUS_SERVICEPACKETS_SERVICE200PACKETS_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_
|
#ifndef FSFW_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_
|
||||||
#define FRAMEWORK_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_
|
#define FSFW_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_
|
||||||
|
|
||||||
#include "../../action/ActionMessage.h"
|
#include "../../action/ActionMessage.h"
|
||||||
#include "../../objectmanager/SystemObjectIF.h"
|
#include "../../objectmanager/SystemObjectIF.h"
|
||||||
@ -73,4 +73,4 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FRAMEWORK_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_ */
|
#endif /* FSFW_PUS_SERVICEPACKETS_SERVICE2PACKETS_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef MISSION_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_
|
#ifndef FSFW_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_
|
||||||
#define MISSION_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_
|
#define FSFW_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_
|
||||||
|
|
||||||
#include "../../serialize/SerializeAdapter.h"
|
#include "../../serialize/SerializeAdapter.h"
|
||||||
#include "../../tmtcservices/VerificationCodes.h"
|
#include "../../tmtcservices/VerificationCodes.h"
|
||||||
@ -73,4 +73,4 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif /* MISSION_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_ */
|
#endif /* FSFW_PUS_SERVICEPACKETS_SERVICE5PACKETS_H_ */
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef FRAMEWORK_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_
|
#ifndef FSFW_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_
|
||||||
#define FRAMEWORK_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_
|
#define FSFW_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_
|
||||||
|
|
||||||
#include "../../action/ActionMessage.h"
|
#include "../../action/ActionMessage.h"
|
||||||
#include "../../objectmanager/SystemObjectIF.h"
|
#include "../../objectmanager/SystemObjectIF.h"
|
||||||
@ -118,4 +118,4 @@ private:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* FRAMEWORK_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_ */
|
#endif /* FSFW_PUS_SERVICEPACKETS_SERVICE8PACKETS_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user