20 lines
658 B
C++
20 lines
658 B
C++
// Copyright 2016 Google Inc. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
#include "packager/hls/base/mock_media_playlist.h"
|
|
|
|
namespace edash_packager {
|
|
namespace hls {
|
|
|
|
MockMediaPlaylist::MockMediaPlaylist(const std::string& file_name,
|
|
const std::string& name,
|
|
const std::string& group_id)
|
|
: MediaPlaylist(file_name, name, group_id) {}
|
|
MockMediaPlaylist::~MockMediaPlaylist() {}
|
|
|
|
} // namespace hls
|
|
} // namespace edash_packager
|