Changeset 3661 in Sophya for trunk/SophyaLib/TArray/tmatrix.cc


Ignore:
Timestamp:
Oct 23, 2009, 9:49:14 PM (16 years ago)
Author:
cmv
Message:
  • ajout des TArray/TMatrix/TVector <uint_1> et <int_1>
  • cet ajout n'a pas ete porte dans Image<T>
  • correction petit bug:

inline int_4 Convert(int_2& x) const {...}
-> inline int_2 Convert(int_2& x) const {...}

cmv 23/10/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tmatrix.cc

    r3101 r3661  
    1 // $Id: tmatrix.cc,v 1.37 2006-11-02 14:57:20 ansari Exp $
     1// $Id: tmatrix.cc,v 1.38 2009-10-23 19:48:27 cmv Exp $
    22//                         C.Magneville          04/99
    33#include "sopnamsp.h"
     
    672672///////////////////////////////////////////////////////////////
    673673#ifdef __CXX_PRAGMA_TEMPLATES__
     674#pragma define_template TMatrix<uint_1>
    674675#pragma define_template TMatrix<uint_2>
    675676#pragma define_template TMatrix<uint_4>
    676677#pragma define_template TMatrix<uint_8>
     678#pragma define_template TMatrix<int_1>
    677679#pragma define_template TMatrix<int_2>
    678680#pragma define_template TMatrix<int_4>
     
    686688#if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES)
    687689namespace SOPHYA {
     690template class TMatrix<uint_1>;
    688691template class TMatrix<uint_2>;
    689692template class TMatrix<uint_4>;
    690693template class TMatrix<uint_8>;
     694template class TMatrix<int_1>;
    691695template class TMatrix<int_2>;
    692696template class TMatrix<int_4>;
Note: See TracChangeset for help on using the changeset viewer.