![]() |
|
|||
File indexing completed on 2024-04-06 11:56:19
0001 #ifndef GENERS_IOISPAIR_HH_ 0002 #define GENERS_IOISPAIR_HH_ 0003 0004 #include <utility> 0005 0006 namespace gs { 0007 template <class T> 0008 struct IOIsPair { 0009 enum { value = 0 }; 0010 }; 0011 0012 template <class T1, class T2> 0013 struct IOIsPair<std::pair<T1, T2>> { 0014 enum { value = 1 }; 0015 }; 0016 } // namespace gs 0017 0018 #endif // GENERS_IOISPAIR_HH_
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |