19 lines
297 B
C++
19 lines
297 B
C++
#ifndef ____stream_h__
|
|
#define ____stream_h__
|
|
|
|
#include "Tag.h"
|
|
#include "ZString.h"
|
|
|
|
namespace jet {
|
|
|
|
class __stream : public Tag {
|
|
|
|
public:
|
|
__stream(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent, Tag *local);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|