00001 00002 // $LICENSE 00003 00004 #ifndef IS_SPECIALIZED_H 00005 #define IS_SPECIALIZED_H 00006 00007 template<class V> 00008 struct is_specialized { 00009 static bool specialized() { return false;} 00010 static const char* name() { return "";} 00011 }; 00012 00013 #endif