Go to the documentation of this file.00001
00011 #ifndef SPATIAL_TEMPORAL_LEARNING_WORLDLIB_REMOTE_SQL_ENTITY_H_
00012 #define SPATIAL_TEMPORAL_LEARNING_WORLDLIB_REMOTE_SQL_ENTITY_H_
00013
00014
00015 #include <stdint.h>
00016
00017 namespace rail
00018 {
00019 namespace spatial_temporal_learning
00020 {
00021 namespace worldlib
00022 {
00023 namespace remote
00024 {
00025
00032 class SqlEntity
00033 {
00034 public:
00042 SqlEntity(const uint32_t id);
00043
00051 uint32_t getID() const;
00052
00060 void setID(const uint32_t id);
00061
00062 private:
00064 uint32_t id_;
00065 };
00066
00067 }
00068 }
00069 }
00070 }
00071
00072 #endif