Removed deprecated function declarations

This commit is contained in:
Celine Mercier
2018-05-31 15:08:11 +02:00
parent 6911bf4d70
commit 892ed83a33

View File

@ -482,51 +482,6 @@ OBIDMS_column_p* obi_view_get_pointer_on_column_in_view(Obiview_p view, const ch
int obi_view_create_column_alias(Obiview_p view, const char* current_name, const char* alias);
/**
* @brief Selects a line in the context of a view.
*
* If no line selection exists for the view, it will be created.
*
* @warning The view must be writable.
* @warning The new line index will be simply added at the end of the current
* new line selection.
*
* @param view A pointer on the view.
* @param line_nb The index of the line that should be added in the selection.
*
* @returns A value indicating the success of the operation.
* @retval 0 if the operation was successfully completed.
* @retval -1 if an error occurred.
*
* @since February 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
int obi_select_line(Obiview_p view, index_t line_nb);
/**
* @brief Selects a list of line in the context of a view.
*
* If no line selection exists for the view, it will be created.
*
* @warning The view must be writable.
* @warning The new line indexes will be simply added at the end of the current
* new line selection.
*
* @param view A pointer on the view.
* @param line_nbs A pointer on an array of indexes corresponding to the lines that
* should be added in the selection.
*
* @returns A value indicating the success of the operation.
* @retval 0 if the operation was successfully completed.
* @retval -1 if an error occurred.
*
* @since February 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
int obi_select_lines(Obiview_p view, index_t* line_nbs);
/**
* @brief Closes an opened view, and saves it if it is not read-only (meaning it is not already saved in the view file).
*