core/vnl/vnl_int_1x1.h
Go to the documentation of this file.
00001 // This is core/vnl/vnl_int_1x1.h
00002 #ifndef vnl_int_1x1_h_
00003 #define vnl_int_1x1_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007 //:
00008 //  \file
00009 //  \brief 1x1 matrix of int
00010 //
00011 //    vnl_int_1x1 is a vnl_matrix<int> of fixed size 1x1.
00012 //    It is merely a typedef for vnl_matrix_fixed<int,1,1>
00013 //
00014 //  \author Peter Vanroose
00015 //  \date   29 June 2003
00016 //
00017 //-----------------------------------------------------------------------------
00018 
00019 #include <vnl/vnl_matrix_fixed.h>
00020 
00021 typedef vnl_matrix_fixed<int,1,1> vnl_int_1x1;
00022 
00023 #endif // vnl_int_1x1_h_