00001 // Copyright (C) Calum Grant 2006 00002 // http://calumgrant.net 00003 00006 #ifndef CG_MAXALIGNED_HPP 00007 #define CG_MAXALIGNED_HPP 00008 00009 namespace cg 00010 { 00012 00014 union max_aligned 00015 { 00016 char c; 00017 int i; 00018 double d; 00019 float f; 00020 short s; 00021 void *p; 00022 long l; 00023 wchar_t w; 00024 }; 00025 } 00026 00027 #endif
1.5.7.1