Files
calculator/src/GraphingInterfaces/IBitmap.h
2021-05-10 10:18:39 -07:00

15 lines
247 B
C++

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