1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 17:49:16 +02:00
bitjs/archive.js
2011-09-06 08:54:43 -07:00

36 lines
No EOL
659 B
JavaScript

/**
* archive.js
*
* Provides base functionality for unarchiving.
*
* Licensed under the MIT License
*
* Copyright(c) 2011 Jeff Schiller
*/
var bitjs = bitjs || {};
bitjs.archive = bitjs.archive || {};
(function() {
bitjs.archive.UnarchiveEvent = funciton() {
this.type
};
bitjs.archive.Unarchiver = function() {
this.listeners_ = [];
};
bitjs.archive.Unarchiver.prototype.addEventListener = function() {
};
bitjs.archive.Unarchiver.prototype.removeEventListener = function() {
};
bitjs.archive.Unarchiver.prototype.unarchive = function() {
throw "Error! Abstract method unarchive() in bitjs.archive.Unarchiver called";
};
})();