/* * This file is part of the FortranProject plugin for Code::Blocks IDE * and licensed under the GNU General Public License, version 3 * http://www.gnu.org/licenses/gpl-3.0.html */ #ifndef FARRAYS_H #define FARRAYS_H #include #ifndef CB_PRECOMP #include #endif #include #include "tokenf.h" typedef std::vector PassedTokensArray2D; typedef std::vector ArrOfSizeT2D; typedef std::vector BoolArray1D; typedef std::vector BoolArray2D; typedef std::vector BoolArray3D; void ClearPassedTokensArray2D(PassedTokensArray2D &array); void ClearArrOfSizeT2D(ArrOfSizeT2D &array); void ClearBoolArray3D(BoolArray3D &array); void ClearBoolArray2D(BoolArray2D &array); #endif // FARRAYS_H