aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/include/IDASHManager.h
diff options
context:
space:
mode:
authorAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-06 14:22:24 +0200
committerAngelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>2017-06-07 15:01:28 +0200
commit6358e611e09092ad121f4a85e548c0d9411ab09f (patch)
tree1e9ac163ce10ab44402dcce1566b7920afbe1bf1 /src/libdash/include/IDASHManager.h
parentdca773280df13ce3ecc6d306dffd603715cf25a5 (diff)
update applications to use new version libicnet
Change-Id: I4b2381a13cf64488baf83056fc1fa11b359d1147 Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
Diffstat (limited to 'src/libdash/include/IDASHManager.h')
-rw-r--r--src/libdash/include/IDASHManager.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/libdash/include/IDASHManager.h b/src/libdash/include/IDASHManager.h
deleted file mode 100644
index 5e4688fb..00000000
--- a/src/libdash/include/IDASHManager.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/**
- * @class dash::IDASHManager
- * @brief This interface is needed for generating an IMPD object from the information found in a MPD file
- * @details By invoking the method Open(char *path) all the information found in the MPD file specified by \em path is mapped to corresponding IMPD objects.
- * @see dash::mpd::IMPD
- *
- * @author bitmovin Softwareentwicklung OG \n
- * Email: libdash-dev@vicky.bitmovin.net
- * @version 2.1
- * @date 2013
- * @copyright bitmovin Softwareentwicklung OG, All Rights Reserved \n\n
- * This source code and its use and distribution, is subject to the terms
- * and conditions of the applicable license agreement.
- */
-
-#ifndef IDASHMANAGER_H_
-#define IDASHMANAGER_H_
-
-#include "config.h"
-
-#include "IMPD.h"
-#include "IConnection.h"
-
-namespace dash
-{
- class IDASHManager
- {
- public:
- virtual ~IDASHManager(){}
-
- /**
- * Returns a pointer to dash::mpd::IMPD object representing the the information found in the MPD file specified by \em path
- * @param path A URI to a MPD file
- * @return a pointer to an dash::mpd::IMPD object
- */
- virtual mpd::IMPD* Open (char *path, std::string mURL = "") = 0;
-
- /**
- * Frees allocated memory and deletes the DashManager
- */
- virtual void Delete () = 0;
- };
-}
-
-#endif /* IDASHMANAGER_H_ */