Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. template <typename>
  2. struct TypeInfo {
  3. // Invalid.
  4. };
  5.  
  6. template <>
  7. struct TypeInfo<Point> {
  8. static constexpr char name[] = "Point";
  9. ??? members = {};
  10. ??? attributes = {};
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement