summaryrefslogtreecommitdiff
path: root/src/model/RangeSet.hpp
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-03-06 10:09:32 +0000
committerbenjamin <benjamin@daaaf23c-2e50-4459-9457-1e69db5a47bf>2014-03-06 10:09:32 +0000
commit36a1402be747136711edc19f7bce45f36a625eb4 (patch)
treef9bcc7095561929dd527c02f4cbb3b68e7901385 /src/model/RangeSet.hpp
parentd99095f4a181357bf0c6d10846351eb0b58b1ccf (diff)
added proper namespaces and ignored end elements in xml parsing
git-svn-id: file:///var/local/svn/basicwriter@27 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src/model/RangeSet.hpp')
-rw-r--r--src/model/RangeSet.hpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/model/RangeSet.hpp b/src/model/RangeSet.hpp
index 3768431..e6e60e0 100644
--- a/src/model/RangeSet.hpp
+++ b/src/model/RangeSet.hpp
@@ -16,13 +16,13 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _RANGE_SET_HPP_
-#define _RANGE_SET_HPP_
+#ifndef _OUSIA_MODEL_RANGE_SET_HPP_
+#define _OUSIA_MODEL_RANGE_SET_HPP_
#include <limits>
namespace ousia {
-
+namespace model {
/**
* The Range structure represents an interval of numerical values of type T.
*/
@@ -150,7 +150,7 @@ struct Range {
* Returns a range that represents the spans the complete set defined by the
* given type T.
*/
- static Range<T> hull()
+ static Range<T> typeRange()
{
return Range(std::numeric_limits<T>::min(),
std::numeric_limits<T>::max());
@@ -163,7 +163,7 @@ struct Range {
* @param till is the value up to which the range should be defined (till is
* included in the set).
*/
- static Range<T> hullUntil(const T &till)
+ static Range<T> typeRangeUntil(const T &till)
{
return Range(std::numeric_limits<T>::min(), till);
}
@@ -175,7 +175,7 @@ struct Range {
* @param from is the value from which the range should be defined (from is
* included in the set).
*/
- static Range<T> hullFrom(const T &from)
+ static Range<T> typeRangeFrom(const T &from)
{
return Range(from, std::numeric_limits<T>::max());
}
@@ -319,6 +319,7 @@ public:
};
}
+}
-#endif /* _RANGE_SET_HPP_ */
+#endif /* _OUSIA_MODEL_RANGE_SET_HPP_ */