00001 /* 00002 * Copyright (c) 1998, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * Author(s): 00006 * Dennis Koelma (koelma@wins.uva.nl) 00007 * Edo Poll (poll@wins.uva.nl) 00008 */ 00009 00010 #ifndef HxMfUpo_h 00011 #define HxMfUpo_h 00012 00013 #include "HxString.h" 00014 00015 class HxImageData; 00016 00024 class HxMfUpo { 00025 public: 00027 HxMfUpo(HxImageData* src, HxString upoName); 00028 00030 ~HxMfUpo(); 00031 00032 00034 HxImageData* source() const; 00035 00037 HxImageData* result() const; 00038 00039 private: 00040 HxImageData* _source; 00041 HxImageData* _result; 00042 }; 00043 00044 #endif