From f1e9c6d19ef8a2b95f2b77103e02371c89d05188 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 23 May 2010 22:09:22 +0200 Subject: Added Struct. --- engine/struct.h | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 engine/struct.h (limited to 'engine') diff --git a/engine/struct.h b/engine/struct.h new file mode 100644 index 0000000..d08e66d --- /dev/null +++ b/engine/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