| ... | ... |
@@ -1013,13 +1013,13 @@ |
| 1013 | 1013 |
/// \ref named-templ-param "Named parameter" |
| 1014 | 1014 |
///function for setting ReachedMap |
| 1015 | 1015 |
/// |
| 1016 | 1016 |
template<class T> |
| 1017 | 1017 |
BfsWizard<DefReachedMapBase<T> > reachedMap(const T &t) |
| 1018 | 1018 |
{
|
| 1019 |
Base:: |
|
| 1019 |
Base::_reached=reinterpret_cast<void*>(const_cast<T*>(&t)); |
|
| 1020 | 1020 |
return BfsWizard<DefReachedMapBase<T> >(*this); |
| 1021 | 1021 |
} |
| 1022 | 1022 |
|
| 1023 | 1023 |
|
| 1024 | 1024 |
template<class T> |
| 1025 | 1025 |
struct DefProcessedMapBase : public Base {
|
| ... | ... |
@@ -1034,13 +1034,13 @@ |
| 1034 | 1034 |
/// \ref named-templ-param "Named parameter" |
| 1035 | 1035 |
///function for setting ProcessedMap |
| 1036 | 1036 |
/// |
| 1037 | 1037 |
template<class T> |
| 1038 | 1038 |
BfsWizard<DefProcessedMapBase<T> > processedMap(const T &t) |
| 1039 | 1039 |
{
|
| 1040 |
Base:: |
|
| 1040 |
Base::_processed=reinterpret_cast<void*>(const_cast<T*>(&t)); |
|
| 1041 | 1041 |
return BfsWizard<DefProcessedMapBase<T> >(*this); |
| 1042 | 1042 |
} |
| 1043 | 1043 |
|
| 1044 | 1044 |
|
| 1045 | 1045 |
template<class T> |
| 1046 | 1046 |
struct DefDistMapBase : public Base {
|
| ... | ... |
@@ -996,13 +996,13 @@ |
| 996 | 996 |
/// \ref named-templ-param "Named parameter" |
| 997 | 997 |
///function for setting ReachedMap |
| 998 | 998 |
/// |
| 999 | 999 |
template<class T> |
| 1000 | 1000 |
DfsWizard<DefReachedMapBase<T> > reachedMap(const T &t) |
| 1001 | 1001 |
{
|
| 1002 |
Base:: |
|
| 1002 |
Base::_reached=reinterpret_cast<void*>(const_cast<T*>(&t)); |
|
| 1003 | 1003 |
return DfsWizard<DefReachedMapBase<T> >(*this); |
| 1004 | 1004 |
} |
| 1005 | 1005 |
|
| 1006 | 1006 |
|
| 1007 | 1007 |
template<class T> |
| 1008 | 1008 |
struct DefProcessedMapBase : public Base {
|
| ... | ... |
@@ -1017,13 +1017,13 @@ |
| 1017 | 1017 |
/// \ref named-templ-param "Named parameter" |
| 1018 | 1018 |
///function for setting ProcessedMap |
| 1019 | 1019 |
/// |
| 1020 | 1020 |
template<class T> |
| 1021 | 1021 |
DfsWizard<DefProcessedMapBase<T> > processedMap(const T &t) |
| 1022 | 1022 |
{
|
| 1023 |
Base:: |
|
| 1023 |
Base::_processed=reinterpret_cast<void*>(const_cast<T*>(&t)); |
|
| 1024 | 1024 |
return DfsWizard<DefProcessedMapBase<T> >(*this); |
| 1025 | 1025 |
} |
| 1026 | 1026 |
|
| 1027 | 1027 |
template<class T> |
| 1028 | 1028 |
struct DefDistMapBase : public Base {
|
| 1029 | 1029 |
typedef T DistMap; |
0 comments (0 inline)