00001 /* Copyright (c) 2001 C. Grigorescu */ 00002 00003 #ifndef INT_KERNEL_H 00004 #define INT_KERNEL_H 00005 00006 #include "Kernel.h" 00010 class IntKernel : public Kernel < int > 00011 { 00012 public: 00014 IntKernel(char *name="") : Kernel< int >(name) {} 00015 00076 IntKernel(INT_KERNEL_TYPE _kernel_type=LAPLACIAN_1, char *name=""); 00077 00080 IntKernel &operator^(IntKernel &kernel); 00081 }; 00082 00083 #endif 00084