00001 #ifndef Exc_Ruby__value_holder__hpp_ 00002 #define Exc_Ruby__value_holder__hpp_ 00003 00004 #include "detail/ruby_hacks.hpp" 00005 00006 namespace Exc_Ruby 00007 { 00010 struct Value_Holder 00011 { 00012 Value_Holder(VALUE value) : v(value) { } 00013 VALUE v; 00014 }; 00015 } 00016 00017 #endif // Exc_Ruby__value_holder__hpp_ 00018