-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstimpack.m
More file actions
executable file
·47 lines (37 loc) · 964 Bytes
/
stimpack.m
File metadata and controls
executable file
·47 lines (37 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
classdef stimpack < handle
%STIMPACK Visual stimulation tool
% Visual stimulation tool for primates based on Psychtoolbox
properties
props@stimProps
end
% PUBLIC METHODS
methods
% Class contructor
function obj = stimpack(varargin)
obj.props = stimProps();
obj.props.path = pwd;
obj.initialiseGUI();
end
end
% HIDDEN METHODS
methods (Hidden = true)
function initialiseGUI(obj)
stimGUI(obj)
end
end
% methods (Static)
% function singleton = getInstance
% persistent local
% if isempty(local)
% local = stimpack();
% end
% singleton = local;
% end
% function run
% sp = stimpack.getInstance();
% sp.initialiseGUI()
% end
%
%
% end
end