Made function to update the line count of a view private

This commit is contained in:
Celine Mercier
2016-04-25 18:11:37 +02:00
parent 767d9c7804
commit 65880db422
2 changed files with 41 additions and 41 deletions

View File

@ -439,26 +439,6 @@ int obi_select_line(Obiview_p view, index_t line_nb);
int obi_select_lines(Obiview_p view, index_t* line_nbs);
/**
* @brief Update the line count in the context of a view.
*
* All columns of the view are enlarged to contain at least the new line count.
*
* @warning The view must be writable.
*
* @param view A pointer on the view.
* @param line_count The new line count.
*
* @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_view_update_lines(Obiview_p view, index_t line_count);
/**
* @brief Saves a view, writing it in the view file.
*