• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2024 Google LLC
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef GFXSTREAM_CONNECTION_H
7 #define GFXSTREAM_CONNECTION_H
8 
9 class GfxStreamConnection {
10    public:
11     GfxStreamConnection();
12     virtual ~GfxStreamConnection();
13 
14     virtual void* getEncoder() = 0;
15 };
16 
17 #endif
18