2016-01-10 23:18:14 +11:00
|
|
|
'use strict';
|
|
|
|
|
2016-03-23 18:07:37 +11:00
|
|
|
const IPC = require('./services/IPC.js');
|
2016-01-11 15:59:40 +11:00
|
|
|
|
|
|
|
class IPCModule extends IPC{
|
|
|
|
constructor(){
|
|
|
|
super();
|
2016-01-11 16:10:58 +11:00
|
|
|
//include IPC to make extensible
|
2016-01-11 15:59:40 +11:00
|
|
|
Object.defineProperty(
|
|
|
|
this,
|
|
|
|
'IPC',
|
|
|
|
{
|
|
|
|
enumerable:true,
|
|
|
|
writable:false,
|
|
|
|
value:IPC
|
|
|
|
}
|
|
|
|
)
|
2016-01-10 16:48:03 +11:00
|
|
|
}
|
2014-02-22 20:13:31 +11:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:59:40 +11:00
|
|
|
module.exports=new IPCModule;
|