Hello All,
I have a template class like as follows :
# ifndef M_SIGNAL_INOUT_IF_H_
# define M_SIGNAL_INOUT_IF_H_
# include "m_signal_in_if.h"
template < class T > class m_signal_inout_if : public m_signal_in_if < T > {
public :
virtual void write (const T&) = 0 ;
virtual void initialize(const T&) = 0;
};
# endif /*M_SIGNAL_INOUT_IF_H_*/
I want to declare typedef of m_signal_inout_if and I have done it as
follows :
# ifndef M_SIGNAL_OUT_IF_H_
# define M_SIGNAL_OUT_IF_H_
# include "m_signal_inout_if.h"
template < class T > m_signal_inout_if < T > m_signal_out_if < T > ;
# endif /*M_SIGNAL_OUT_IF_H_*/
But I am getting syntax error in this process.
Can anybody please tell me what is the wrong with it ?
Regards,
--
--------------------------------------------
Sumit Adhikari
System Design Engineer
austriamicrosystems AG
Business Unit : Automotive
Mob : 00-91-9885271710/00-91-9000161710
_______________________________________________
Help-gsl mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gsl