xref: /aosp_15_r20/external/mesa3d/src/gfxstream/guest/connection-manager/GfxStreamConnection.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
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