// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "GraphingInterfaces/IBitmap.h" #include namespace MockGraphingImpl { class Bitmap : public Graphing::IBitmap { virtual const std::vector& GetData() const { return std::vector(); } }; }