13 lines
302 B
C++
13 lines
302 B
C++
#include "__cpmment.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;
|
|
}
|
|
|
|
}
|