restore path_storage typedef - reverting r1861 as r1866 switched away from different usage

This commit is contained in:
Dane Springmeyer 2010-06-19 05:31:03 +00:00
parent 36a8e19ad4
commit 3e34359aad

View file

@ -1531,7 +1531,7 @@ namespace agg
};
//-----------------------------------------------------------path_storage
//typedef path_base<vertex_block_storage<double> > path_storage;
typedef path_base<vertex_block_storage<double> > path_storage;
// Example of declarations path_storage with pod_bvector as a container
//-----------------------------------------------------------------------
@ -1544,6 +1544,11 @@ namespace agg
// Example of declarations path_storage with std::vector as a container
//---------------------------------------------------------------------------
//#include <vector>
//namespace agg
//{
// typedef path_base<vertex_stl_storage<std::vector<vertex_d> > > path_storage;
//}
#endif