// -*- c++ -*- /*****************************************************************************/ // Copyright (c) Illumina 2008 // Author: Richard Shaw // // This software is covered by the "Illumina Genome Analyzer Software // License Agreement" and the "Illumina Source Code License Agreement", // and certain third party copyright/licenses, and any user of this // source file is bound by the terms therein (see accompanying files // Illumina_Genome_Analyzer_Software_License_Agreement.pdf and // Illumina_Source_Code_License_Agreement.pdf and third party // copyright/license notices). /*****************************************************************************/ #ifndef STRING_TYPES_H #define STRING_TYPES_H /*****************************************************************************/ #include #include #include /*****************************************************************************/ typedef std::list Str_List; typedef Str_List::iterator Str_List_Iter; typedef Str_List::const_iterator Str_List_CIter; typedef std::vector Str_Vec; typedef Str_Vec::iterator Str_Vec_Iter; typedef Str_Vec::const_iterator Str_Vec_CIter; /*****************************************************************************/ #endif // ! STRING_TYPES_H /*****************************************************************************/