Aggiunto typename

This commit is contained in:
ganovelli 2004-04-05 13:53:37 +00:00
parent 98433b6bfc
commit ad6d5c2bed
1 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.3 2004/03/31 22:36:44 ganovelli
First Working Release (with this comment)
/****************************************************************************/ /****************************************************************************/
#ifndef __VCGLIB_ENTRIES__ #ifndef __VCGLIB_ENTRIES__
@ -38,7 +41,7 @@ template <class STL_CONT>
struct EntryCATBase{ struct EntryCATBase{
EntryCATBase(STL_CONT & _c):c(_c){}; EntryCATBase(STL_CONT & _c):c(_c){};
STL_CONT::value_type * Start() const; typename STL_CONT::value_type * Start() const;
virtual bool Empty(){}; virtual bool Empty(){};
const STL_CONT * C(); const STL_CONT * C();
virtual void Push_back(const int &){}; virtual void Push_back(const int &){};