aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/BaseUrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/mpd/BaseUrl.h')
-rw-r--r--src/libdash/source/mpd/BaseUrl.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/libdash/source/mpd/BaseUrl.h b/src/libdash/source/mpd/BaseUrl.h
deleted file mode 100644
index 0147c1ed..00000000
--- a/src/libdash/source/mpd/BaseUrl.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * BaseUrl.h
- *****************************************************************************
- * 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.
- *****************************************************************************/
-
-#ifndef BASEURL_H_
-#define BASEURL_H_
-
-#include "config.h"
-
-#include "Segment.h"
-#include "IBaseUrl.h"
-#include "AbstractMPDElement.h"
-
-namespace dash
-{
- namespace mpd
- {
- class BaseUrl : public IBaseUrl, public AbstractMPDElement
- {
- public:
- BaseUrl ();
- virtual ~BaseUrl();
-
- const std::string& GetUrl () const;
- const std::string& GetServiceLocation () const;
- const std::string& GetByteRange () const;
-
- void SetUrl (const std::string& url);
- void SetServiceLocation (const std::string& serviceLocation);
- void SetByteRange (const std::string& byteRange);
-
- virtual ISegment* ToMediaSegment (const std::vector<IBaseUrl *>& baseurls) const;
-
- private:
- std::string url;
- std::string serviceLocation;
- std::string byteRange;
- };
- }
-}
-
-#endif /* BASEURL_H_ */