- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsheet_encoding.h
More file actions
Latest commit
23 lines (19 loc) · 559 Bytes
/
Copy pathsheet_encoding.h
File metadata and controls
23 lines (19 loc) · 559 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef CPP_ALGORITHM_SHEET_ENCODING_H
#defineCPP_ALGORITHM_SHEET_ENCODING_H
#include<string>
namespaceSheetEncoding
{
/**
* \brief Convert a column title to a corresponding column number.
* \param column column title
* \return number
*/
autoDecodingSheetColumnId(const std::string& column) -> int;
/**
* \brief Convert a column number to a corresponding column title.
* \param column_id column number
* \return column title
*/
autoEncodingSheetColumnId(int column_id) -> std::string;
}
#endif