yadro-task/include/tapeutil.h
erius 5f9f6d2e92 Added tape namespace to all tape-related declarations
Added tapeutil header and source file for sorting methods
Added FileTapeSettings struct to store delay settings for a file tape
2024-10-22 03:24:13 +03:00

12 lines
127 B
C++

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