aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/Subset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/mpd/Subset.h')
-rw-r--r--src/libdash/source/mpd/Subset.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/libdash/source/mpd/Subset.h b/src/libdash/source/mpd/Subset.h
new file mode 100644
index 00000000..c56eb6e2
--- /dev/null
+++ b/src/libdash/source/mpd/Subset.h
@@ -0,0 +1,41 @@
+/*
+ * Subset.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 SUBSET_H_
+#define SUBSET_H_
+
+#include "config.h"
+
+#include "ISubset.h"
+#include "../helpers/String.h"
+#include "AbstractMPDElement.h"
+
+namespace dash
+{
+ namespace mpd
+ {
+ class Subset : public ISubset, public AbstractMPDElement
+ {
+ public:
+ Subset ();
+ virtual ~Subset ();
+
+ const std::vector<uint32_t>& Contains () const;
+
+ void SetSubset (const std::string& subset);
+
+ private:
+ std::vector<uint32_t> subset;
+ };
+ }
+}
+
+#endif /* SUBSET_H_ */