#ifndef JS_FILESTREAM_H #define JS_FILESTERAM_H #include "stream.h" /* FileStream object Provides access to a stream for reading and writing to files. class FileStream implements Stream { public: } */ JSBool register_class_FileStream(JSContext *cx); JSObject *FileStream_getPrototypeObject(); struct _FileStreamInformation { StreamInformation streamInfo; char *path; }; typedef struct _FileStreamInformation FileStreamInformation; #endif