Files
Datastructs/Exam/part1/Utils.h
Christopher Sanden a8006be05f Adding exam part 1/4
2025-11-03 21:30:23 +01:00

26 lines
453 B
C++

#ifndef PART1_UTILS_H
#define PART1_UTILS_H
#include "TDoublyLinkedList.h"
#include "TStack.h"
class Utils {
public:
static int Choice();
static int Insert(TDoublyLinkedList &document, TStack &undoStack, TStack &redoStack, int index);
static void PrintList(const TDoublyLinkedList &document);
static int RemoveLine(TDoublyLinkedList &document, TStack &undoStack, TStack &redoStack, int index);
};
#endif //PART1_UTILS_H