00001
00002 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00003 #pragma implementation
00004 #endif
00005
00006
00007
00008
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;
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* , int , int , int , int ) const
00035 {
00036 return false;
00037 }
00038
00039 bool vil1_image_impl::put_section(void const* , int , int , int , int )
00040 {
00041 return false;
00042 }