blob: 25a1a23379bacb3fee124fc9ea0bc644ac500e1f [file] [log] [blame]
/*
* @author: ucla-cs
* This class represents ExcludeAny objects
*/
var ExcludeAny = function ExcludeAny() {
};
ExcludeAny.prototype.decode = function(decoder) {
decoder.readStartElement(this.getElementLabel());
decoder.readEndElement();
};
ExcludeAny.prototype.encode = function( encoder) {
encoder.writeStartElement(this.getElementLabel());
encoder.writeEndElement();
};
ExcludeAny.prototype.getElementLabel=function() { return CCNProtocolDTags.Any; };