summaryrefslogtreecommitdiffstats
path: root/chromecast/public/osd_plane_shlib.h
blob: 0ee170b019e06f4b0914b0b94d80578beeff6f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2015 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_OSD_PLANE_SHLIB_H_
#define CHROMECAST_PUBLIC_OSD_PLANE_SHLIB_H_

#include <string>
#include <vector>

#include "chromecast_export.h"

namespace chromecast {

class OsdPlane;

// Entry point for loading OsdPlane from shared library.
class CHROMECAST_EXPORT OsdPlaneShlib {
 public:
  static OsdPlane* Create(const std::vector<std::string>& argv);
};

}  // namespace chromecast

#endif  // CHROMECAST_PUBLIC_OSD_PLANE_SHLIB_H_