Made the function to clone a column in the context of a view private

This commit is contained in:
Celine Mercier
2016-04-25 18:15:25 +02:00
parent 65880db422
commit 92980508c0
3 changed files with 81 additions and 83 deletions

View File

@ -326,24 +326,6 @@ int obi_view_add_column(Obiview_p view,
bool create);
/**
* @brief Clones a column in the context of a view.
*
* Clones with the right line selection and replaces the cloned columns with the new ones in the view.
* If there is a line selection, all columns have to be cloned, otherwise only the column of interest is cloned.
*
* @param view A pointer on the view.
* @param column_name The name of the column in the view that should be cloned.
*
* @returns A pointer on the new column.
* @retval NULL if an error occurred.
*
* @since February 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
OBIDMS_column_p obi_view_clone_column(Obiview_p view, const char* column_name);
/**
* @brief Deletes a column from a view.
*