blob: 6bcb317f3faea130ae73ea9900fb4ced52df9a5e [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMECAST_PUBLIC_CAST_SYS_INFO_SHLIB_H_
#define CHROMECAST_PUBLIC_CAST_SYS_INFO_SHLIB_H_
#include <string>
#include <vector>
#include "chromecast_export.h" // NOLINT(build/include)
namespace chromecast {
class CastSysInfo;
class CHROMECAST_EXPORT CastSysInfoShlib {
public:
// Returns a instance of CastSysInfo for the platform from a shared library.
// Caller will take ownership of returned pointer.
static CastSysInfo* Create(const std::vector<std::string>& argv);
};
} // namespace chromecast
#endif // CHROMECAST_PUBLIC_CAST_SYS_INFO_SHLIB_H_