group.hpp
Go to the documentation of this file.
1 #ifndef FANUC_POST_PROCESSOR_GROUP_HPP
2 #define FANUC_POST_PROCESSOR_GROUP_HPP
3 
5 #include <vector>
6 
7 namespace fanuc_post_processor
8 {
9 
11 {
12 public:
13  FanucGroup(const std::vector<FanucAxis> axis,
14  const unsigned user_frame = 0,
15  const unsigned tool_frame = 1) :
16  axis_(axis),
17  user_frame_(user_frame),
18  tool_frame_(tool_frame)
19  {
20  }
21 
22  virtual ~FanucGroup()
23  {
24  }
25 
26  std::vector<FanucAxis> axis_;
27  unsigned user_frame_;
28  unsigned tool_frame_;
29 };
30 
31 }
32 #endif
Definition: axis.hpp:6
unsigned user_frame_
Definition: group.hpp:27
Definition: group.hpp:10
FanucGroup(const std::vector< FanucAxis > axis, const unsigned user_frame=0, const unsigned tool_frame=1)
Definition: group.hpp:13
virtual ~FanucGroup()
Definition: group.hpp:22
std::vector< FanucAxis > axis_
Definition: group.hpp:26
unsigned tool_frame_
Definition: group.hpp:28


fanuc_post_processor
Author(s): Victor Lamoine - Institut Maupertuis
autogenerated on Mon Jun 10 2019 13:16:56