You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
/*=============================================================================
|
|
Copyright 2020 Siemens Digital Industries Software
|
|
==================================================
|
|
Copyright 2015
|
|
Siemens Product Lifecycle Management Software Inc.
|
|
All Rights Reserved.
|
|
==================================================
|
|
Copyright 2020 Siemens Digital Industries Software
|
|
===============================================================================*/
|
|
|
|
/**
|
|
@file
|
|
|
|
Teamcenter::Bob errors include file.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_ERRORS_H
|
|
#define CONFIG_ERRORS_H
|
|
|
|
#include <common/emh_const.h>
|
|
|
|
/**
|
|
@defgroup CONFIG_ERRORS CONFIG Errors
|
|
@ingroup CONFIG
|
|
@{
|
|
*/
|
|
|
|
#define CONFIG_internal_error (EMH_CONFIG_error_base + 0)
|
|
#define CONFIG_query_already_built (EMH_CONFIG_error_base + 1)
|
|
#define CONFIG_query_not_built (EMH_CONFIG_error_base + 2)
|
|
/** The following Config feature is not supported: %1$. */
|
|
#define CONFIG_feature_not_supported (EMH_CONFIG_error_base + 3)
|
|
|
|
/** @} */
|
|
|
|
#endif
|