![]() |
Mozzi
alpha 0.01.1t
sound synthesis library for Arduino
|
00001 /* 00002 http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Int-To-Type 00003 Template meta-programming extras. 00004 */ 00005 00006 #ifndef META_H_ 00007 #define META_H_ 00008 00018 template <int I> 00019 struct Int2Type 00020 { 00021 enum { 00022 value = I }; 00023 }; 00024 00025 #endif /* META_H_ */