Add Graph Settings (#879)
This commit is contained in:
17
src/GraphingImpl/Mocks/Bitmap.h
Normal file
17
src/GraphingImpl/Mocks/Bitmap.h
Normal file
@@ -0,0 +1,17 @@
|
||||
// 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>();
|
||||
}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user