// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include namespace Graphing { struct IBitmap { virtual const std::vector& GetData() const = 0; }; }