From 803027cbb45ebe01e4f8b427a7cc95728d6e5f47 Mon Sep 17 00:00:00 2001 From: sicarius Date: Sat, 17 Feb 2007 13:42:00 +0000 Subject: +++ enhanced framework hardware interface --- source/Concept/Framework/position_tracker.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 source/Concept/Framework/position_tracker.h (limited to 'source/Concept/Framework/position_tracker.h') diff --git a/source/Concept/Framework/position_tracker.h b/source/Concept/Framework/position_tracker.h new file mode 100644 index 0000000..49c5d40 --- /dev/null +++ b/source/Concept/Framework/position_tracker.h @@ -0,0 +1,27 @@ +#ifndef _POSITION_TRACKER_H +#define _POSITION_TRACKER_H + +#include "stdafx.h" + +class Position_Tracker : public IO_Module +{ +public: + Position_Tracker() + { + this->parent = NULL; + this->moduleId = 0; + } + + Position_Tracker(uint32 trackerId) + { + this->parent = NULL; + this->moduleId = trackerId; + } + +protected: + +public: + void Update(); +}; + +#endif -- cgit v1.2.3