Chi-Tech
lbs_group.h
Go to the documentation of this file.
1#ifndef LBS_GROUP
2#define LBS_GROUP
3
4//################################################################### Class def
5namespace lbs
6{
7 /**Object holding a grouping.*/
8 class LBSGroup
9 {
10 public:
11 int id_;
12
13 public:
14 LBSGroup() : id_(-1) {}
15 explicit LBSGroup(int id) : id_(id) {}
16 };
17}
18
19#endif
LBSGroup(int id)
Definition: lbs_group.h:15