xterminhate Si vis pacem, para bellum. | Code :
- template< typename X, typename Y >
- struct foo
- {
- void affiche() const;
- };
- template<>
- struct foo< int, int* >
- {
- void affiche() const;
- }
- template< typename X, typename Y >
- void foo< X, Y >::affiche() const { cout << "fonction générique X/Y" << endl; }
- int main()
- {
- foo<int,int*>().affiche(); // erreur de link, trouve pas la définition de la fonction membre.
- }
|
---------------
Cordialement, Xterm-in'Hate...
|