--- trunk/OOPSE-4/src/utils/TupleMatcher.hpp 2005/01/12 22:41:40 1930 +++ trunk/OOPSE-4/src/utils/TupleMatcher.hpp 2005/04/15 22:04:00 2204 @@ -1,4 +1,4 @@ - /* +/* * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. * * The University of Notre Dame grants you ("Licensee") a @@ -52,19 +52,19 @@ namespace oopse { #include namespace oopse { - template - class TupleMatcher { - static ReturnType match(const std::map& container, const TupleType& t) { - typename std::map::iterator i; + template + class TupleMatcher { + static ReturnType match(const std::map& container, const TupleType& t) { + typename std::map::iterator i; - i = container.find(t); - if (i != container.end()) { - return i->second; - } else { - return NULL; - } - } - }; + i = container.find(t); + if (i != container.end()) { + return i->second; + } else { + return NULL; + } + } + }; } #endif //UTILS_TUPLEMATCHER_HPP