JetCore/__read.h
2024-11-27 09:47:17 -08:00

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