aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/Range.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/mpd/Range.cpp')
-rw-r--r--src/libdash/source/mpd/Range.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/libdash/source/mpd/Range.cpp b/src/libdash/source/mpd/Range.cpp
deleted file mode 100644
index 6f0aed9f..00000000
--- a/src/libdash/source/mpd/Range.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Range.cpp
- *****************************************************************************
- * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
- *
- * Email: libdash-dev@vicky.bitmovin.net
- *
- * This source code and its use and distribution, is subject to the terms
- * and conditions of the applicable license agreement.
- *****************************************************************************/
-
-#include "Range.h"
-
-using namespace dash::mpd;
-
-Range::Range () :
- starttime(""),
- duration("")
-{
-}
-Range::~Range ()
-{
-}
-
-const std::string& Range::GetStarttime () const
-{
- return this->starttime;
-}
-void Range::SetStarttime (const std::string& starttime)
-{
- this->starttime = starttime;
-}
-const std::string& Range::GetDuration () const
-{
- return this->duration;
-}
-void Range::SetDuration (const std::string& duration)
-{
- this->duration = duration;
-}