JetCore/__until.h
2024-10-31 07:47:53 -07:00

19 lines
276 B
C++

#ifndef ____until_h__
#define ____until_h__
#include "Tag.h"
#include <sstream>
namespace jet {
class __until : public Tag {
public:
__until(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent);
};
}
#endif