calculator/src/GraphingInterfaces/IBitmap.h
2020-01-03 15:06:14 -08:00

15 lines
232 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;
};
}