intermediate commit - it has been over a month since I touched

this...
This commit is contained in:
Bernhard Amann 2012-12-03 10:42:50 -08:00
parent e2fdf16e0c
commit bb76335e5a
2 changed files with 163 additions and 0 deletions

14
src/AsciiInputOutput.h Normal file
View file

@ -0,0 +1,14 @@
// See the file "COPYING" in the main distribution directory for copyright.
#ifndef AsciiInputOutput_h
#define AsciiInputOutput_h
class AsciiInputOutput {
public:
// converts a threading value to the corresponding ascii representation
// returns false & logs an error with reporter in case an error occurs
bool ValToText(ODesc* desc, Value* val, const Field* field);
};
#endif /* AsciiInputOuput_h */