~ubuntu-branches/ubuntu/utopic/r-cran-genabel/utopic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __CONVERT_UTIL__
#define __CONVERT_UTIL__

using namespace std;

unsigned long calcNumLines(string fileName);
void parseStringToArbType(string s, int destType, void *destData);
void text2fvf(string program_name, string infilename, string outfilename,
              string rownamesfilename, string colnamesfilename,
              int rncol, int cnrow,
              unsigned long skiprows, unsigned long skipcols,
              int bTranspose, int Rmatrix, unsigned short type,
              bool quiet, string nanString);

#endif