comparison presetManager.h @ 27:ae4d2c3ce5e0

Details. Zoom trailing finger move sorted. Qs rephrased.
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 13 Feb 2013 17:03:56 +0000
parents 2e1fdac115af
children fabb3a5cdfc9
comparison
equal deleted inserted replaced
26:2e1fdac115af 27:ae4d2c3ce5e0
102 bool presetAlertShowing; 102 bool presetAlertShowing;
103 103
104 // names values 104 // names values
105 // check if already there 105 // check if already there
106 // find and return all(?) presets within a certain coordinate range 106 // find and return all(?) presets within a certain coordinate range
107 vector<Preset *> thePresets; // we want vector ? or list? pointers using new? 107 vector<Preset *> thePresets;
108 108
109 int addPreset(string name); // returns id or negative error number 109 int addPreset(string name);
110 int loadPreset(const TwoVector coord, const string name, long long stime); 110 int loadPreset(const TwoVector coord, const string name, long long stime);
111 111
112 TwoVector recallPreset(int presetID); // by name ? id? 112 TwoVector recallPreset(int presetID); // by name ? id?
113 TwoVector recallPreset(string name); // by name ? id? 113 TwoVector recallPreset(string name); // by name ? id?
114 vector<Preset *> getPresetsInRange(TwoVector min, TwoVector max); 114 vector<Preset *> getPresetsInRange(TwoVector min, TwoVector max);