erius
5f9f6d2e92
Added tapeutil header and source file for sorting methods Added FileTapeSettings struct to store delay settings for a file tape
12 lines
127 B
C++
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
|