23 lines
336 B
C++
23 lines
336 B
C++
#ifndef ____read_h__
|
|
#define ____read_h__
|
|
|
|
#include "Tag.h"
|
|
|
|
namespace jet {
|
|
|
|
class __read : public Tag {
|
|
|
|
public:
|
|
__read(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent, Tag *local);
|
|
|
|
private:
|
|
int fd;
|
|
int len;
|
|
char buffer[4096];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|