source: issm/trunk-jpl/src/c/classes/objects/Options/OptionUtilities.h@ 14917

Last change on this file since 14917 was 14917, checked in by Eric.Larour, 12 years ago

CHG: got rid of the include/include.h headere file, finally :)

File size: 702 bytes
Line 
1/*! \file OptionUtilities.h
2 * \brief: header file for option object utilities
3 */
4
5#ifndef _OPTIONUTILITIES_H_
6#define _OPTIONUTILITIES_H_
7
8/*Headers:{{{*/
9#include "../../../shared/Exceptions/exceptions.h"
10#include "../../../EnumDefinitions/EnumDefinitions.h"
11
12#include "./Option.h"
13/*}}}*/
14
15int ColumnWiseDimsFromIndex(int* dims, int index, int* size, int ndims);
16int IndexFromColumnWiseDims(int* dims, int* size, int ndims);
17int RowWiseDimsFromIndex(int* dims, int index, int* size, int ndims);
18int IndexFromRowWiseDims(int* dims, int* size, int ndims);
19int StringFromDims(char* cstr, int* dims, int ndims);
20int StringFromSize(char* cstr, int* size, int ndims);
21
22#endif /* _OPTIONUTILITIES_H */
Note: See TracBrowser for help on using the repository browser.