Rice  3.0.0
Jump_Tag.hpp
1 #ifndef Rice__Jump_Tag__hpp_
2 #define Rice__Jump_Tag__hpp_
3 
4 namespace Rice
5 {
6 
8 
12 struct Jump_Tag
13 {
15  Jump_Tag(int t) : tag(t) { }
16 
18  int tag;
19 };
20 
21 } // namespace Rice
22 
23 #endif // Rice__Jump_Tag__hpp_
24 
A placeholder for Ruby longjmp data.
Definition: Jump_Tag.hpp:13
int tag
The tag being held.
Definition: Jump_Tag.hpp:18
Jump_Tag(int t)
Construct a Jump_Tag with tag t.
Definition: Jump_Tag.hpp:15