mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
21 lines
435 B
C++
21 lines
435 B
C++
#ifndef STORM_BIG_BIG_DATA_HPP
|
|
#define STORM_BIG_BIG_DATA_HPP
|
|
|
|
#include "storm/big/BigBuffer.hpp"
|
|
#include "storm/big/BigStack.hpp"
|
|
#include "storm/Array.hpp"
|
|
|
|
class BigData {
|
|
public:
|
|
// Member variables
|
|
BigBuffer m_primary;
|
|
BigStack m_stack;
|
|
TSGrowableArray<uint8_t> m_output;
|
|
|
|
// Member functions
|
|
TSGrowableArray<uint8_t>& Output() const;
|
|
BigBuffer& Primary();
|
|
BigStack& Stack() const;
|
|
};
|
|
|
|
#endif
|