MT Showcase SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
RotatableItem.hpp
1 #pragma once
2 
3 #include "Export.hpp"
4 
5 #include <MultiWidgets/Widget.hpp>
6 
7 namespace Showcase
8 {
9  class SHOWCASE_API RotatableItem
10  {
11  public:
12  RotatableItem() {}
13  virtual ~RotatableItem() {}
14 
15  virtual void setMarker(const MultiTouch::Marker & marker, uint64_t key = 0) = 0;
16  };
17 }