3434#ifndef FUSE_CORE_TRANSACTION_DESERIALIZER_H
3535#define FUSE_CORE_TRANSACTION_DESERIALIZER_H
3636
37- #include < fuse_msgs/SerializedTransaction.h >
37+ #include < fuse_msgs/msg/serialized_transaction.hpp >
3838#include < fuse_core/constraint.h>
3939#include < fuse_core/transaction.h>
4040#include < fuse_core/variable.h>
41- #include < pluginlib/class_loader.h >
41+ #include < pluginlib/class_loader.hpp >
4242
4343
4444namespace fuse_core
@@ -47,7 +47,7 @@ namespace fuse_core
4747/* *
4848 * @brief Serialize a transaction into a message
4949 */
50- void serializeTransaction (const fuse_core::Transaction& transaction, fuse_msgs::SerializedTransaction& msg);
50+ void serializeTransaction (const fuse_core::Transaction& transaction, fuse_msgs::msg:: SerializedTransaction& msg);
5151
5252/* *
5353 * @brief Deserialize a Transaction
@@ -73,7 +73,7 @@ class TransactionDeserializer
7373 * @param[IN] msg The SerializedTransaction message to be deserialized
7474 * @return A fuse Transaction object
7575 */
76- fuse_core::Transaction deserialize (const fuse_msgs::SerializedTransaction::ConstPtr & msg) const ;
76+ fuse_core::Transaction deserialize (const fuse_msgs::msg:: SerializedTransaction::ConstSharedPtr & msg) const ;
7777
7878 /* *
7979 * @brief Deserialize a SerializedTransaction message into a fuse Transaction object.
@@ -84,7 +84,7 @@ class TransactionDeserializer
8484 * @param[IN] msg The SerializedTransaction message to be deserialized
8585 * @return A fuse Transaction object
8686 */
87- fuse_core::Transaction deserialize (const fuse_msgs::SerializedTransaction& msg) const ;
87+ fuse_core::Transaction deserialize (const fuse_msgs::msg:: SerializedTransaction& msg) const ;
8888
8989private:
9090 pluginlib::ClassLoader<fuse_core::Variable> variable_loader_; // !< Pluginlib class loader for Variable types
0 commit comments