mirror of
https://github.com/microsoft/calculator.git
synced 2025-03-12 04:35:52 -07:00
18 lines
376 B
C++
18 lines
376 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "GraphingInterfaces/IBitmap.h"
|
|
#include <WinDef.h>
|
|
namespace MockGraphingImpl
|
|
{
|
|
class Bitmap : public Graphing::IBitmap
|
|
{
|
|
virtual const std::vector<BYTE>& GetData() const
|
|
{
|
|
return std::vector<BYTE>();
|
|
}
|
|
};
|
|
}
|