diff options
Diffstat (limited to 'src/libdash/source/mpd/Subset.h')
-rw-r--r-- | src/libdash/source/mpd/Subset.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/libdash/source/mpd/Subset.h b/src/libdash/source/mpd/Subset.h deleted file mode 100644 index c56eb6e2..00000000 --- a/src/libdash/source/mpd/Subset.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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_ */ |