Mercurial > hg > soniczoomios
annotate eventLogger.h @ 0:307e5fb699fb
First commit.
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Mon, 19 Nov 2012 12:56:47 +0000 |
parents | |
children | 23efe1f0cd8a |
rev | line source |
---|---|
rt300@0 | 1 // |
rt300@0 | 2 // eventLogger.h |
rt300@0 | 3 // oscSenderExample |
rt300@0 | 4 // |
rt300@0 | 5 // Created by Robert Tubb on 05/11/2012. |
rt300@0 | 6 // |
rt300@0 | 7 // |
rt300@0 | 8 // This class handle everything to do with loggin user actions, |
rt300@0 | 9 // uploading logs to server, and storing locally if not uploaded |
rt300@0 | 10 |
rt300@0 | 11 #ifndef __oscSenderExample__eventLogger__ |
rt300@0 | 12 #define __oscSenderExample__eventLogger__ |
rt300@0 | 13 |
rt300@0 | 14 #include <iostream> |
rt300@0 | 15 |
rt300@0 | 16 |
rt300@0 | 17 class EventLogger{ |
rt300@0 | 18 public: |
rt300@0 | 19 // what we need... |
rt300@0 | 20 /* |
rt300@0 | 21 time, type, value |
rt300@0 | 22 */ |
rt300@0 | 23 |
rt300@0 | 24 }; |
rt300@0 | 25 |
rt300@0 | 26 |
rt300@0 | 27 #endif /* defined(__oscSenderExample__eventLogger__) */ |