﻿class RefOutArgWrapper {
    constructor (val = null) {
        this.value = val;
    }
}        
module.exports = RefOutArgWrapper;