erius
680ec28b57
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
12 lines
145 B
C++
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
|