artdaq_node_server  v1_00_09
 All Classes Namespaces Files Variables Pages
customtype.js
1 var CustomType = module.exports = function(raw) {
2  this.raw = raw
3 }
4 
5 CustomType.prototype.serialize = function(xml) {
6  return xml.ele(this.tagName).txt(this.raw)
7 }
8 
9 CustomType.prototype.tagName = 'customType'
10