mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
13 lines
304 B
C++
13 lines
304 B
C++
#include "storm/big/BigData.hpp"
|
|
|
|
TSGrowableArray<uint8_t>& BigData::Output() const {
|
|
return const_cast<TSGrowableArray<uint8_t>&>(this->m_output);
|
|
}
|
|
|
|
BigBuffer& BigData::Primary() {
|
|
return this->m_primary;
|
|
}
|
|
|
|
BigStack& BigData::Stack() const {
|
|
return const_cast<BigStack&>(this->m_stack);
|
|
}
|