updated filestructure and gitignore. uploading exam progress
This commit is contained in:
26
Exam/IKT203Exam/Portfolio/SharedLib/Utils.h
Normal file
26
Exam/IKT203Exam/Portfolio/SharedLib/Utils.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef UTILS_H
|
||||
#define 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
|
||||
Reference in New Issue
Block a user