Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core-c] removed ecal_ prefix of public API header files #1939

Merged
merged 7 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions lang/c/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ endif()


set(ecal_header_cimpl
include/ecal/cimpl/ecal_callback_cimpl.h
include/ecal/cimpl/ecal_client_cimpl.h
include/ecal/cimpl/ecal_core_cimpl.h
include/ecal/cimpl/ecal_init_cimpl.h
include/ecal/cimpl/ecal_log_cimpl.h
include/ecal/cimpl/ecal_monitoring_cimpl.h
include/ecal/cimpl/ecal_process_cimpl.h
include/ecal/cimpl/ecal_publisher_cimpl.h
include/ecal/cimpl/ecal_server_cimpl.h
include/ecal/cimpl/ecal_service_info_cimpl.h
include/ecal/cimpl/ecal_subscriber_cimpl.h
include/ecal/cimpl/ecal_time_cimpl.h
include/ecal/cimpl/ecal_timer_cimpl.h
include/ecal/cimpl/ecal_util_cimpl.h
include/ecal/cimpl/callback_cimpl.h
include/ecal/cimpl/client_cimpl.h
include/ecal/cimpl/core_cimpl.h
include/ecal/cimpl/init_cimpl.h
include/ecal/cimpl/log_cimpl.h
include/ecal/cimpl/monitoring_cimpl.h
include/ecal/cimpl/process_cimpl.h
include/ecal/cimpl/publisher_cimpl.h
include/ecal/cimpl/server_cimpl.h
include/ecal/cimpl/service_info_cimpl.h
include/ecal/cimpl/subscriber_cimpl.h
include/ecal/cimpl/time_cimpl.h
include/ecal/cimpl/timer_cimpl.h
include/ecal/cimpl/util_cimpl.h
include/ecal/ecalc.h
include/ecal/ecalc_export.h
include/ecal/ecalc_types.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_callback_cimpl.h
* @file callback_cimpl.h
* @brief eCAL callback interface events, structs and functions
**/

#ifndef ecal_callback_cimpl_h_included
#define ecal_callback_cimpl_h_included
#ifndef callback_cimpl_h_included
#define callback_cimpl_h_included

/**
* @brief eCAL subscriber event callback type.
Expand Down Expand Up @@ -189,4 +189,4 @@ typedef void(*ClientEventCallbackCT)(const char* name_, const struct SClientEven
**/
typedef void(*ServerEventCallbackCT)(const char* name_, const struct SServerEventCallbackDataC* data_, void* par_);

#endif /* ecal_callback_cimpl_h_included */
#endif /* callback_cimpl_h_included */
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
*/

/**
* @file ecal_client_cimpl.h
* @file client_cimpl.h
* @brief eCAL client c interface
**/

#ifndef ecal_client_cimpl_h_included
#define ecal_client_cimpl_h_included
#ifndef client_cimpl_h_included
#define client_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_callback_cimpl.h>
#include <ecal/cimpl/ecal_service_info_cimpl.h>
#include <ecal/cimpl/callback_cimpl.h>
#include <ecal/cimpl/service_info_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -168,4 +168,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_client_cimpl_h_included*/
#endif /*client_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
*/

/**
* @file ecal_core_cimpl.h
* @file core_cimpl.h
* @brief eCAL core function c interface
**/

#ifndef ecal_core_cimpl_h_included
#define ecal_core_cimpl_h_included
#ifndef core_cimpl_h_included
#define core_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_init_cimpl.h>
#include <ecal/cimpl/init_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -122,4 +122,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_core_cimpl_h_included*/
#endif /*core_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_init_cimpl.h
* @file init_cimpl.h
* @brief eCAL initialize components
**/

#ifndef ecal_init_cimpl_h_included
#define ecal_init_cimpl_h_included
#ifndef init_cimpl_h_included
#define init_cimpl_h_included

#define eCAL_Init_Publisher 0x01 /*!< Initialize Publisher API */
#define eCAL_Init_Subscriber 0x02 /*!< Initialize Subscriber API */
Expand All @@ -45,4 +45,4 @@
| eCAL_Init_Logging \
| eCAL_Init_TimeSync) /*!< Initialize default eCAL API */

#endif /*ecal_init_cimpl_h_included*/
#endif /*init_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_log_cimpl.h
* @file log_cimpl.h
* @brief eCAL logging c interface
**/

#ifndef ecal_log_cimpl_h_included
#define ecal_log_cimpl_h_included
#ifndef log_cimpl_h_included
#define log_cimpl_h_included

#include <ecal/ecalc_export.h>

Expand Down Expand Up @@ -69,4 +69,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_log_cimpl_h_included*/
#endif /*log_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_monitoring_cimpl.h
* @file monitoring_cimpl.h
* @brief eCAL monitoring c interface
**/

#ifndef ecal_monitoring_cimpl_h_included
#define ecal_monitoring_cimpl_h_included
#ifndef monitoring_cimpl_h_included
#define monitoring_cimpl_h_included

#include <ecal/ecalc_export.h>

Expand Down Expand Up @@ -60,4 +60,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_monitoring_cimpl_h_included*/
#endif /*monitoring_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_process_cimpl.h
* @file process_cimpl.h
* @brief eCAL process c interface
**/

#ifndef ecal_process_cimpl_h_included
#define ecal_process_cimpl_h_included
#ifndef process_cimpl_h_included
#define process_cimpl_h_included

#include <ecal/ecalc_export.h>

Expand Down Expand Up @@ -188,4 +188,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_process_cimpl_h_included*/
#endif /*process_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
*/

/**
* @file ecal_publisher_cimpl.h
* @file publisher_cimpl.h
* @brief eCAL publisher c interface
**/

#ifndef ecal_publisher_cimpl_h_included
#define ecal_publisher_cimpl_h_included
#ifndef publisher_cimpl_h_included
#define publisher_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_callback_cimpl.h>
#include <ecal/cimpl/callback_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -157,4 +157,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_publisher_cimpl_h_included*/
#endif /*publisher_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@
*/

/**
* @file ecal_server_cimpl.h
* @file server_cimpl.h
* @brief eCAL service c interface
**/

#ifndef ecal_server_cimpl_h_included
#define ecal_server_cimpl_h_included
#ifndef server_cimpl_h_included
#define server_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_service_info_cimpl.h>
#include <ecal/cimpl/ecal_callback_cimpl.h>
#include <ecal/cimpl/service_info_cimpl.h>
#include <ecal/cimpl/callback_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -117,4 +117,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_server_cimpl_h_included*/
#endif /*server_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_service_info_cimpl.h
* @file service_info_cimpl.h
* @brief eCAL service info for C Interface
**/

#ifndef ecal_service_info_cimpl_h_included
#define ecal_service_info_cimpl_h_included
#ifndef service_info_cimpl_h_included
#define service_info_cimpl_h_included

/**
* @brief Service call state.
Expand Down Expand Up @@ -82,4 +82,4 @@ typedef int(*MethodCallbackCT)(const char* method_, const char* req_type_, const
**/
typedef void(*ResponseCallbackCT)(const struct SServiceResponseC* service_response_, void* par_);

#endif /* ecal_service_info_cimpl_h_included */
#endif /* service_info_cimpl_h_included */
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
*/

/**
* @file ecal_subscriber_cimpl.h
* @file subscriber_cimpl.h
* @brief eCAL subscriber c interface
**/

#ifndef ecal_subscriber_cimpl_h_included
#define ecal_subscriber_cimpl_h_included
#ifndef subscriber_cimpl_h_included
#define subscriber_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_callback_cimpl.h>
#include <ecal/cimpl/callback_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -235,4 +235,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_subscriber_cimpl_h_included*/
#endif /*subscriber_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_time_cimpl.h
* @file time_cimpl.h
* @brief eCAL time c interface
**/

#ifndef ecal_time_cimpl_h_included
#define ecal_time_cimpl_h_included
#ifndef time_cimpl_h_included
#define time_cimpl_h_included

#include <ecal/ecalc_export.h>

Expand Down Expand Up @@ -110,4 +110,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_time_cimpl_h_included*/
#endif /*time_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
*/

/**
* @file ecal_timer_cimpl.h
* @file timer_cimpl.h
* @brief eCAL timer c interface
**/

#ifndef ecal_timer_cimpl_h_included
#define ecal_timer_cimpl_h_included
#ifndef timer_cimpl_h_included
#define timer_cimpl_h_included

#include <ecal/ecalc_export.h>
#include <ecal/ecalc_types.h>

#include <ecal/cimpl/ecal_callback_cimpl.h>
#include <ecal/cimpl/callback_cimpl.h>

#ifdef __cplusplus
extern "C"
Expand Down Expand Up @@ -75,4 +75,4 @@ extern "C"
}
#endif /*__cplusplus*/

#endif /*ecal_timer_cimpl_h_included*/
#endif /*timer_cimpl_h_included*/
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
*/

/**
* @file ecal_tlayer_cimpl.h
* @file tlayer_cimpl.h
* @brief eCAL transport layer
**/

#ifndef ecal_tlayer_cimpl_h_included
#define ecal_tlayer_cimpl_h_included
#ifndef tlayer_cimpl_h_included
#define tlayer_cimpl_h_included

/**
* @brief eCAL transport layer types.
Expand All @@ -48,4 +48,4 @@ enum eSendModeC
smode_auto
};

#endif /*ecal_tlayer_cimpl_h_included*/
#endif /*tlayer_cimpl_h_included*/
Loading
Loading