00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef RAWFILES_H
00025 #define RAWFILES_H
00026
00027 #include <rawverse.h>
00028 #include <swcom.h>
00029
00030 #include <defs.h>
00031
00032 SWORD_NAMESPACE_START
00033
00034 class SWDLLEXPORT RawFiles : public RawVerse, public SWCom {
00035
00036 char *getnextfilename();
00037
00038 public:
00039
00040
00041 RawFiles(const char *ipath, const char *iname = 0, const char *idesc = 0,
00042 SWDisplay *idisp = 0, SWTextEncoding encoding = ENC_UNKNOWN,
00043 SWTextDirection dir = DIRECTION_LTR, SWTextMarkup markup = FMT_UNKNOWN,
00044 const char *ilang = 0);
00045 virtual ~RawFiles();
00046 virtual char *getRawEntry();
00047
00048
00052 virtual bool isWritable() {
00053 return ((idxfp[0]->getFd() > 0) && ((idxfp[0]->mode & O_RDWR) == O_RDWR));
00054 }
00055
00060 static char createModule(const char *);
00061
00066 virtual void setEntry(const char *inbuf, long len = -1);
00067
00072 virtual void linkEntry(const SWKey *linkKey);
00073
00077 virtual void deleteEntry();
00078
00079
00080
00081
00082
00083 SWMODULE_OPERATORS
00084
00085 };
00086
00087 SWORD_NAMESPACE_END
00088 #endif