JetCore/__sql.h
2024-09-25 19:57:51 -07:00

18 lines
236 B
C++

#ifndef ____sql_h__
#define ____sql_h__
#include "Tag.h"
namespace jet {
class __sql : public Tag {
public:
__sql(coreutils::ZString &in, coreutils::MString &parent, Global &global);
};
}
#endif