|
Last change
on this file since 14917 was 14917, checked in by Eric.Larour, 13 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 |
|
|---|
| 15 | int ColumnWiseDimsFromIndex(int* dims, int index, int* size, int ndims);
|
|---|
| 16 | int IndexFromColumnWiseDims(int* dims, int* size, int ndims);
|
|---|
| 17 | int RowWiseDimsFromIndex(int* dims, int index, int* size, int ndims);
|
|---|
| 18 | int IndexFromRowWiseDims(int* dims, int* size, int ndims);
|
|---|
| 19 | int StringFromDims(char* cstr, int* dims, int ndims);
|
|---|
| 20 | int StringFromSize(char* cstr, int* size, int ndims);
|
|---|
| 21 |
|
|---|
| 22 | #endif /* _OPTIONUTILITIES_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.