Chi-Tech
anglesetgroup.h
Go to the documentation of this file.
1#ifndef CHI_ANGLESET_GROUP_H
2#define CHI_ANGLESET_GROUP_H
3
5
6// ###################################################################
7/**Manages the workstages of a single angleset group.*/
9{
10public:
11 std::vector<std::shared_ptr<AngleSet>>& AngleSets() { return angle_sets_; }
12
13private:
14 std::vector<std::shared_ptr<AngleSet>> angle_sets_;
15};
16
17#endif // CHI_ANGLESET_GROUP_H
std::vector< std::shared_ptr< AngleSet > > & AngleSets()
Definition: anglesetgroup.h:11
std::vector< std::shared_ptr< AngleSet > > angle_sets_
Definition: anglesetgroup.h:14