ohif-viewer/Packages/hangingprotocols/server/imageset.js
2016-01-11 11:32:20 +01:00

21 lines
499 B
JavaScript
Executable File

DICOMHP.imageSet = function(setNumber, category) {
this.setNumber = setNumber;
this.category = category;
};
DICOMHP.imageSet.prototype.setRelativeTime = function(time) {
this.relativeTime = time;
};
DICOMHP.imageSet.prototype.setTimeUnits = function(units) {
this.timeUnits = units;
};
DICOMHP.imageSet.prototype.setPriorValue = function(priorValue) {
this.priorValue = priorValue;
};
DICOMHP.imageSet.prototype.retrieve = function(studyInstanceId) {
};