yadro-task/include/tapelib/tape_util.h
erius 680ec28b57 Added file_name and temp fields to FileTape
Removed explicit keyword before every constructor in FileTape
Added getters for private fields in FileTape
Made Tape's copy construcot marked as delete by default
Implemented custom destrucor for FileTape
Added explicit move and copy constructors to FileTape
Added generate_tmp_file_name method to tape namespace
Removed assets directory from tests - testing data should be provided in the test's cpp file
2024-10-26 04:23:11 +03:00

12 lines
145 B
C++

#ifndef TAPE_UTIL_H
#define TAPE_UTIL_H
#include "tape.h"
namespace tape {
void sort(Tape &input, Tape &output);
} // namespace tape
#endif