JetCore/__jet.h
2024-02-16 11:13:10 -08:00

20 lines
273 B
C++

#ifndef ____jet_h__
#define ____jet_h__
#include "Tag.h"
#include "ZString.h"
#include <sstream>
namespace jet {
class __jet : public Tag {
public:
__jet(coreutils::ZString &in, coreutils::MString &out, Global &global);
};
}
#endif