13 lines
335 B
C++
13 lines
335 B
C++
#include "__comment.h"
|
|
#include "Exception.h"
|
|
|
|
namespace jet {
|
|
|
|
__comment::__comment(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent) : Tag(in, parentOut, global, parent) {
|
|
if(!hasContainer)
|
|
throw coreutils::Exception("comment must have a container.");
|
|
output = false;
|
|
}
|
|
|
|
}
|