From d6b9953c32b9abc2a96bb2e5b82d8801a1d12cef Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 13 Jun 2010 16:35:25 +0200 Subject: Added more stuff. --- struct.h | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 struct.h (limited to 'struct.h') diff --git a/struct.h b/struct.h new file mode 100644 index 0000000..d08e66d --- /dev/null +++ b/struct.h @@ -0,0 +1,53 @@ +#ifndef STRUCT_H +#define STRUCT_H + +template +struct Struct { + A a; + B b; + C c; + D d; + E e; + F f; +}; + +template +struct Struct { + A a; + B b; + C c; + D d; + E e; +}; + +template +struct Struct { + A a; + B b; + C c; + D d; +}; + +template +struct Struct { + A a; + B b; + C c; +}; + +template +struct Struct { + A a; + B b; +}; + +template +struct Struct { + A a; +}; + +template<> +struct Struct { +}; + +#endif -- cgit v1.2.3