JetCore/__comment.cpp
2024-07-08 18:50:46 -07:00

13 lines
302 B
C++

#include "__comment.h"
#include "Exception.h"
namespace jet {
__comment::__comment(coreutils::ZString &in, coreutils::MString &out, Global &global) : Tag(in, out, global) {
if(!hasContainer)
throw coreutils::Exception("comment must have a container.");
output = false;
}
}