| 42 | } |
| 43 | |
| 44 | ofxTLUIHeader::ofxTLUIHeader(){ |
| 45 | gui = NULL; |
| 46 | trackHeader = NULL; |
| 47 | shouldDelete = false; |
| 48 | lastInputReceivedTime = -1000; |
| 49 | |
| 50 | hasReceivedValue = false; |
| 51 | hasSentValue = false; |
| 52 | lastFloatSent = 0; |
| 53 | lastBoolSent = false; |
| 54 | lastColorSent = ofColor(0,0,0); |
| 55 | lastValueReceived = 0; |
| 56 | audioNumberOfBins = 256; |
| 57 | |
| 58 | bins = NULL; |
| 59 | minDialer = NULL; |
| 60 | maxDialer = NULL; |
| 61 | sendOSCEnable = NULL; |
| 62 | receiveOSCEnable = NULL; |
| 63 | modified = false; |
| 64 | } |
| 65 | |
| 66 | ofxTLUIHeader::~ofxTLUIHeader(){ |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected