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 
00021 template<typename T1, typename op_type>
00022 Op<T1, op_type>::Op(const T1& in_m)
00023   : m(in_m)
00024   , aux(aux)
00025   , aux_u32_a(aux_u32_a)
00026   , aux_u32_b(aux_u32_b)
00027   {
00028   arma_extra_debug_sigprint();
00029   }
00030   
00031 
00032 
00033 template<typename T1, typename op_type>
00034 Op<T1, op_type>::Op(const T1& in_m, const typename T1::elem_type in_aux)
00035   : m(in_m)
00036   , aux(in_aux)
00037   , aux_u32_a(aux_u32_a)
00038   , aux_u32_b(aux_u32_b)
00039   {
00040   arma_extra_debug_sigprint();
00041   }
00042   
00043 
00044 
00045 template<typename T1, typename op_type>
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 T1& in_m, const typename T1::elem_type in_aux, const u32 in_aux_u32_a, const u32 in_aux_u32_b)
00059   : m(in_m)
00060   , aux(in_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(const u32 in_aux_u32_a, const u32 in_aux_u32_b, const char junk)
00071   : m(m)
00072   , aux(aux)
00073   , aux_u32_a(in_aux_u32_a)
00074   , aux_u32_b(in_aux_u32_b)
00075   {
00076   arma_extra_debug_sigprint();
00077   }
00078   
00079 
00080 
00081 template<typename T1, typename op_type>
00082 Op<T1, op_type>::~Op()
00083   {
00084   arma_extra_debug_sigprint();
00085   }
00086 
00087 
00088 
00089 //! @}