Deleted deprecated function declaration that would make compilation

impossible and fixed error in documentation
This commit is contained in:
Celine Mercier
2016-07-22 16:21:02 +02:00
parent 20425a5d2b
commit 3843485a04

View File

@ -71,7 +71,7 @@ typedef struct Obiview_infos {
*/
bool all_lines; /**< Whether there is a line selection associated with the view.
*/
Column_reference_t line_selection; /**< Whether there is a line selection associated with the view.
Column_reference_t line_selection; /**< The references of the line selection associated with the view if there is one.
*/
index_t line_count; /**< The number of lines in the view.
*/
@ -450,20 +450,6 @@ int obi_close_view(Obiview_p view);
int obi_save_and_close_view(Obiview_p view);
/**
* @brief Opens the structure containing all the informations written in the view file.
*
* @param dms A pointer on the OBIDMS to which the view file belongs.
*
* @returns A pointer on the view informations structure.
* @retval NULL if an error occurred.
*
* @since February 2016
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
Obiviews_infos_all_p obi_read_view_infos(OBIDMS_p dms);
/**
* @brief Closes the structure containing all the informations written in the view file.
*