lemon/bits/traits.h
changeset 2290 f30867b359a8
parent 2039 dacc4ce9474d
child 2329 3f4a04a9b7bf
equal deleted inserted replaced
2:c03a4cf3fef2 3:77649efe8a10
   321     typename enable_if<typename Graph::UndirectedTag, void>::type
   321     typename enable_if<typename Graph::UndirectedTag, void>::type
   322   > {
   322   > {
   323     static const bool value = true;
   323     static const bool value = true;
   324   };
   324   };
   325 
   325 
   326 
   326   template <typename Graph, typename Enable = void>
       
   327   struct CloneableTagIndicator {
       
   328     static const bool value = false;
       
   329   };
       
   330 
       
   331   template <typename Graph>
       
   332   struct CloneableTagIndicator<
       
   333     Graph, 
       
   334     typename enable_if<typename Graph::CloneableTag, void>::type
       
   335   > {
       
   336     static const bool value = true;
       
   337   };
   327 
   338 
   328 }
   339 }
   329 
   340 
   330 #endif
   341 #endif