From cb10b2b449a851344c8693c1d283041cb3122c7c Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Tue, 9 Feb 2021 16:17:30 +0000 Subject: [PATCH] Include : - aggiunto tipo INTUNORDSET (unordered set di interi). --- EgtNumCollection.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EgtNumCollection.h b/EgtNumCollection.h index cfbf9ff..fd91da6 100644 --- a/EgtNumCollection.h +++ b/EgtNumCollection.h @@ -16,6 +16,7 @@ #include #include #include +#include //---------------------------------------------------------------------------- // Raccolte di booleani @@ -27,6 +28,7 @@ typedef std::list BOOLLIST ; // lista di bool typedef std::vector INTVECTOR ; // vettore di interi typedef std::list INT_LIST ; // lista di interi (con _ per non collidere con Win) typedef std::vector> INTMATRIX ; // matrice di interi +typedef std::unordered_set INTUNORDSET ; // unordered set di interi //---------------------------------------------------------------------------- // Raccolte di interi senza segno