X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmath%2Fsg_types.hxx;h=36a2a35a390be5f6d010504a6510ab083b5e52ce;hb=7a52c2fa71355631a559d74e0860fa6c5efa424e;hp=f413c26b58359eb66f13f00c6773132562e2bffd;hpb=dca07c5634604c18213d08b688e894de354ea335;p=simgear.git diff --git a/simgear/math/sg_types.hxx b/simgear/math/sg_types.hxx index f413c26b..36a2a35a 100644 --- a/simgear/math/sg_types.hxx +++ b/simgear/math/sg_types.hxx @@ -38,28 +38,18 @@ #include #include -class Point3D; - -using std::vector; -using std::string; - /** STL vector list of ints */ -typedef vector < int > int_list; +typedef std::vector < int > int_list; typedef int_list::iterator int_list_iterator; typedef int_list::const_iterator const_int_list_iterator; /** STL vector list of doubles */ -typedef vector < double > double_list; +typedef std::vector < double > double_list; typedef double_list::iterator double_list_iterator; typedef double_list::const_iterator const_double_list_iterator; -/** STL vector list of Point3D */ -typedef vector < Point3D > point_list; -typedef point_list::iterator point_list_iterator; -typedef point_list::const_iterator const_point_list_iterator; - /** STL vector list of strings */ -typedef vector < string > string_list; +typedef std::vector < std::string > string_list; typedef string_list::iterator string_list_iterator; typedef string_list::const_iterator const_string_list_iterator;