2021-04-24 16:58:05 +02:00
|
|
|
|
|
|
|
#ifndef MYTEST_HPP
|
|
|
|
#define MYTEST_HPP
|
|
|
|
|
2021-05-04 21:28:10 +02:00
|
|
|
|
|
|
|
#include"../vector/vector.hpp"
|
|
|
|
#include"../list/list.hpp"
|
|
|
|
#include"../queue/queue.hpp"
|
|
|
|
#include"../queue/lst/queuelst.hpp"
|
|
|
|
#include"../queue/vec/queuevec.hpp"
|
|
|
|
#include"../stack/stack.hpp"
|
|
|
|
#include"../stack/lst/stacklst.hpp"
|
|
|
|
#include"../stack/vec/stackvec.hpp"
|
|
|
|
#include"../iterator/iterator.hpp"
|
|
|
|
#include"../binarytree/binarytree.hpp"
|
|
|
|
#include"../binarytree/lnk/binarytreelnk.hpp"
|
|
|
|
#include"../binarytree/vec/binarytreevec.hpp"
|
|
|
|
#include<iostream>
|
|
|
|
using namespace std;
|
2021-04-24 16:58:05 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2021-05-04 21:28:10 +02:00
|
|
|
void menu(){
|
|
|
|
std::cout<<"MYTESTS\n";
|
|
|
|
}
|
|
|
|
|
2021-04-24 16:58:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|