Go to the documentation of this file.00001 #ifndef VIENNACL_META_ENABLE_IF_HPP_
00002 #define VIENNACL_META_ENABLE_IF_HPP_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00024 #include <string>
00025 #include <fstream>
00026 #include <sstream>
00027 #include "viennacl/forwards.h"
00028
00029
00030 #include <vector>
00031 #include <map>
00032
00033 namespace viennacl
00034 {
00036 template <bool b, class T = void>
00037 struct enable_if
00038 {
00039 typedef T type;
00040 };
00041
00042 template <class T>
00043 struct enable_if<false, T> {};
00044
00045 }
00046
00047
00048 #endif