core/vil1/vil1_image_impl.cxx

Go to the documentation of this file.
00001 // This is core/vil1/vil1_image_impl.cxx
00002 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00003 #pragma implementation
00004 #endif
00005 //:
00006 // \file
00007 // \author Andrew W. Fitzgibbon, Oxford RRG
00008 // \date   16 Feb 00
00009 //
00010 //-----------------------------------------------------------------------------
00011 
00012 #include "vil1_image_impl.h"
00013 #include <vil1/vil1_image.h>
00014 #include <vcl_cassert.h>
00015 
00016 //--------------------------------------------------------------------------------
00017 
00018 vil1_image vil1_image_impl::get_plane(unsigned int p) const
00019 {
00020   assert((int)p < planes());
00021   return 0; // since this function has to be overloaded
00022 }
00023 
00024 bool vil1_image_impl::get_property(char const *, void *) const
00025 {
00026   return false;
00027 }
00028 
00029 bool vil1_image_impl::set_property(char const *, void const *) const
00030 {
00031   return false;
00032 }
00033 
00034 bool vil1_image_impl::get_section(void* /*buf*/, int /*x0*/, int /*y0*/, int /*width*/, int /*height*/) const
00035 {
00036   return false;
00037 }
00038 
00039 bool vil1_image_impl::put_section(void const* /*buf*/, int /*x0*/, int /*y0*/, int /*width*/, int /*height*/)
00040 {
00041   return false;
00042 }

Generated on Sun Nov 22 05:09:18 2009 for core/vil1 by  doxygen 1.5.1