Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #pragma once
00029 #ifndef OBJTREE_HISTORY_H
00030 #define OBJTREE_HISTORY_H
00031
00032 #include <srs_env_model/but_server/objtree/types.h>
00033
00034 namespace objtree
00035 {
00036
00037 class Node;
00038
00043 class History
00044 {
00045 public:
00046 static const unsigned int length = 10;
00047
00048 History();
00049
00050 void update(Point point);
00052 const Point *get() const { return m_history; }
00053
00054 private:
00055 Point m_history[length];
00056 };
00057
00058 }
00059
00060 #endif // OBJTREE_HISTORY_H
srs_env_model
Author(s): Vit Stancl (stancl@fit.vutbr.cz), Tomas Lokaj, Jan Gorig, Michal Spanel (spanel@fit.vutbr.cz)
autogenerated on Mon Oct 6 2014 08:05:05