vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
collection.h
Go to the documentation of this file.
1 /* collection - list of lists (list of gestures + actual list)
2 * Ludek Pokluda, xpokluda@fi.muni.cz
3 * v0.0.2 22.11.2002
4 */
5 
6 /*
7  * collection - smart gesture list
8  * - with transformation ability -> rotate gesture, scale gesture
9 */
10 
11 #ifndef _COLLECTION_
12 #define _COLLECTION_
13 
14 #include "gesture.h"
15 #include "mvect.h"
16 #include "gm.h"
17 #include <vector>
18 
19 namespace mv{
21 public:
22  std::vector <CGesture> glist;
23 public:
24  CCollection();
25  ~CCollection();
26 };
27 
28 }
29 
30 #endif