Guest User

Untitled

a guest
Apr 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. x->a_value();
  2. x->set_a_value();
  3. x->b_value();
  4. x->set_b_value();
  5.  
  6. #define MAC(type)
  7. x->set_##type##_value(val);
  8.  
  9. MAC(a)
  10.  
  11. #define MAC(type)
  12. x->##type##_value();
  13.  
  14. MAC(a)
Add Comment
Please, Sign In to add comment