Removed deprecated function

This commit is contained in:
Celine Mercier
2016-09-21 17:09:59 +02:00
parent dd55aef3e5
commit 802bae110b
2 changed files with 0 additions and 37 deletions

View File

@@ -205,25 +205,6 @@ OBIDMS_p obi_dms(const char* dms_path);
int obi_close_dms(OBIDMS_p dms);
/**
* @brief Checks if a column with a given name is in the list of opened columns.
*
* @warning: Checking only the name means that the column can be of any version.
*
* @param dms The OBIDMS.
* @param column_name The column name that should be looked for.
*
* @returns An integer value indicating whether there is at least one column with that name
* in the list of opened columns.
* @retval 0 if there is at least one column with that name in the list of opened columns.
* @retval 1 if there is no column with that name in the list of opened columns.
*
* @since April 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
int obi_dms_is_column_name_in_list(OBIDMS_p dms, const char* column_name);
/**
* @brief Returns a column identified by its name and its version number from the list of opened columns.
*