AlpacaLibrary/Include/Core/Classes/AbstractBufferProvider.hpp

25 lines
600 B
C++
Raw Normal View History

2018-12-15 21:27:21 +00:00
#ifndef ABSTRACTBUFFERPROVIDER_HPP_INCLUDED
#define ABSTRACTBUFFERPROVIDER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include <vector>
namespace Internal
{
class AbstractBufferProvider : public Object
{
public:
AbstractBufferProvider();
AbstractBufferProvider(const void* Obj);
AbstractBufferProvider(const AbstractBufferProvider& A);
static Class GetClass();
std::vector<std::int32_t> GetPixels() const;
};
}
#endif // ABSTRACTBUFFERPROVIDER_HPP_INCLUDED