mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
28 lines
447 B
C
28 lines
447 B
C
|
/**
|
||
|
* @file buffer.h
|
||
|
* @brief NEX buffer implementation.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "string.h"
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace nex
|
||
|
{
|
||
|
// todo
|
||
|
class Buffer
|
||
|
{
|
||
|
public:
|
||
|
Buffer(nn::nex::Buffer const &);
|
||
|
Buffer(nn::nex::Buffer &&);
|
||
|
Buffer(nn::nex::String const &);
|
||
|
|
||
|
void FreeDataBuffer(u8 *, u64);
|
||
|
|
||
|
virtual ~Buffer();
|
||
|
};
|
||
|
};
|
||
|
};
|