BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
RawDataCache.cxx
Go to the documentation of this file.
1#include "RawFile/RawDataCache.h"
2#include <cstdlib>
3#include <iostream>
4
6{
7 m_data = (char*)malloc(size);
8 if (m_data != nullptr) {
9 m_capacity = size;
10 }
11}
12
14{
15 if (m_data != nullptr) {
16 free(m_data);
17 }
18}
19
RawDataCache()=default