1
General Board / Import from source doesn't understand 'typen
« on: October 26, 2006, 08:24:46 am »
EA will not reverse engineer any of my template classes when they include lines with typename
There was an error parsing H:\Work\WCL\WCL\wsx_image_grey_template.h on line 29. Unexpected symbol: Get_Image_Start
Here's a fragment of the template below.
namespace wsx
{
namespace image
{
template<class TSample>
class wsx_image_grey_template : public wsx_image_template<TSample>
{
public:
// Defined functions.
typename virtual iterator Get_Image_Start();
typename virtual iterator Get_Image_Start(int x, int y);
typename virtual iterator Get_Image_Start(const wsx::data::wsx_point &point);
Any ideas for a fix?
There was an error parsing H:\Work\WCL\WCL\wsx_image_grey_template.h on line 29. Unexpected symbol: Get_Image_Start
Here's a fragment of the template below.
namespace wsx
{
namespace image
{
template<class TSample>
class wsx_image_grey_template : public wsx_image_template<TSample>
{
public:
// Defined functions.
typename virtual iterator Get_Image_Start();
typename virtual iterator Get_Image_Start(int x, int y);
typename virtual iterator Get_Image_Start(const wsx::data::wsx_point &point);
Any ideas for a fix?