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

dash: MPD: Removing useless CTOR

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 85ed6b99
......@@ -35,10 +35,7 @@ MPD::MPD (std::map<std::string, std::string> attributes)
this->attributes = attributes;
this->programInfo = NULL;
}
MPD::MPD ()
{
}
MPD::~MPD ()
{
for(size_t i = 0; i < this->periods.size(); i++)
......
......@@ -45,7 +45,6 @@ namespace dash
public:
MPD (std::map<std::string, std::string> attributes);
MPD ();
virtual ~MPD();
const std::string& getType () const throw(dash::exception::AttributeNotPresentException);
......
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