|
Revision 209, 335 bytes
(checked in by anonymous, 10 years ago)
|
This commit was manufactured by cvs2svn to create tag 'alpha_02'.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
#ifndef _PARSEUTIL_H_ |
|---|
| 3 |
#define _PARSEUTIL_H_ |
|---|
| 4 |
|
|---|
| 5 |
#include <config.h> |
|---|
| 6 |
#include <iostream.h> |
|---|
| 7 |
#include <Config/vjVarValue.h> |
|---|
| 8 |
|
|---|
| 9 |
int readString (istream& in, char* buffer, int size, bool *quoted = NULL); |
|---|
| 10 |
VarType readType (istream &ip); |
|---|
| 11 |
char *typeString (VarType t); |
|---|
| 12 |
char *unitString (CfgUnit t); |
|---|
| 13 |
float toFeet (float val, CfgUnit unit); |
|---|
| 14 |
|
|---|
| 15 |
#endif |
|---|