aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/ProgramInformation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/mpd/ProgramInformation.cpp')
-rw-r--r--src/libdash/source/mpd/ProgramInformation.cpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/libdash/source/mpd/ProgramInformation.cpp b/src/libdash/source/mpd/ProgramInformation.cpp
new file mode 100644
index 00000000..2ba0d6ff
--- /dev/null
+++ b/src/libdash/source/mpd/ProgramInformation.cpp
@@ -0,0 +1,67 @@
+/*
+ * ProgramInformation.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 "ProgramInformation.h"
+
+using namespace dash::mpd;
+
+ProgramInformation::ProgramInformation () :
+ title(""),
+ source(""),
+ copyright(""),
+ lang(""),
+ moreInformationURL("")
+{
+}
+ProgramInformation::~ProgramInformation ()
+{
+}
+
+const std::string& ProgramInformation::GetTitle () const
+{
+ return this->title;
+}
+void ProgramInformation::SetTitle (const std::string& title)
+{
+ this->title = title;
+}
+const std::string& ProgramInformation::GetSource () const
+{
+ return this->source;
+}
+void ProgramInformation::SetSource (const std::string& source)
+{
+ this->source = source;
+}
+const std::string& ProgramInformation::GetCopyright () const
+{
+ return this->copyright;
+}
+void ProgramInformation::SetCopyright (const std::string& copyright)
+{
+ this->copyright = copyright;
+}
+const std::string& ProgramInformation::GetLang () const
+{
+ return this->lang;
+}
+void ProgramInformation::SetLang (const std::string& lang)
+{
+ this->lang = lang;
+}
+const std::string& ProgramInformation::GetMoreInformationURL () const
+{
+ return this->moreInformationURL;
+}
+void ProgramInformation::SetMoreInformationURL (const std::string& moreInfoURL)
+{
+ this->moreInformationURL = moreInfoURL;
+}