Commit 54452fcd authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Rémi Denis-Courmont

dash: IMPDManager: Removing useless constructor

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 49e90877
...@@ -29,14 +29,6 @@ ...@@ -29,14 +29,6 @@
using namespace dash::mpd; using namespace dash::mpd;
NullManager::NullManager ()
{
}
NullManager::~NullManager ()
{
}
const std::vector<Period *>& NullManager::getPeriods () const const std::vector<Period *>& NullManager::getPeriods () const
{ {
return this->periods; return this->periods;
......
...@@ -39,9 +39,6 @@ namespace dash ...@@ -39,9 +39,6 @@ namespace dash
class NullManager : public IMPDManager class NullManager : public IMPDManager
{ {
public: public:
NullManager ();
virtual ~NullManager();
const std::vector<Period *>& getPeriods () const; const std::vector<Period *>& getPeriods () const;
Period* getFirstPeriod (); Period* getFirstPeriod ();
Period* getNextPeriod (Period *period); Period* getNextPeriod (Period *period);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment