Op_meat.hpp

Go to the documentation of this file.
00001 // Copyright (C) 2009 NICTA
00002 // 
00003 // Authors:
00004 // - Conrad Sanderson (conradsand at ieee dot org)
00005 // 
00006 // This file is part of the Armadillo C++ library.
00007 // It is provided without any warranty of fitness
00008 // for any purpose. You can redistribute this file
00009 // and/or modify it under the terms of the GNU
00010 // Lesser General Public License (LGPL) as published
00011 // by the Free Software Foundation, either version 3
00012 // of the License or (at your option) any later version.
00013 // (see http://www.opensource.org/licenses for more info)
00014 
00015 
00016 //! \addtogroup Op
00017 //! @{
00018 
00019 
00020 template<typename T1, typename op_type>
00021 Op<T1, op_type>::Op(const T1& in_m)
00022   : m(in_m)
00023   , aux(aux)
00024   , aux_u32_a(aux_u32_a)
00025   , aux_u32_b(aux_u32_b)
00026   {
00027   arma_extra_debug_sigprint();
00028   }
00029   
00030 
00031 
00032 template<typename T1, typename op_type>
00033 Op<T1, op_type>::Op(const T1& in_m, const typename T1::elem_type in_aux)
00034   : m(in_m)
00035   , aux(in_aux)
00036   , aux_u32_a(aux_u32_a)
00037   , aux_u32_b(aux_u32_b)
00038   {
00039   arma_extra_debug_sigprint();
00040   }
00041   
00042 
00043 
00044 template<typename T1, typename op_type>
00045 //Op<T1, op_type>::Op(const T1& in_m, const u32 in_aux_u32_a, const u32 in_aux_u32_b = 0)
00046 Op<T1, op_type>::Op(const T1& in_m, const u32 in_aux_u32_a, const u32 in_aux_u32_b)
00047   : m(in_m)
00048   , aux(aux)
00049   , aux_u32_a(in_aux_u32_a)
00050   , aux_u32_b(in_aux_u32_b)
00051   {
00052   arma_extra_debug_sigprint();
00053   }
00054 
00055 
00056 
00057 template<typename T1, typename op_type>
00058 Op<T1, op_type>::Op(const u32 in_aux_u32_a, const u32 in_aux_u32_b, const char junk)
00059   : m(m)
00060   , aux(aux)
00061   , aux_u32_a(in_aux_u32_a)
00062   , aux_u32_b(in_aux_u32_b)
00063   {
00064   arma_extra_debug_sigprint();
00065   }
00066   
00067 
00068 
00069 template<typename T1, typename op_type>
00070 Op<T1, op_type>::~Op()
00071   {
00072   arma_extra_debug_sigprint();
00073   }
00074  
00075 
00076 //! @}