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