00001 /* 00002 OpenMorpho Library - Mathematical Morphology (Image processing) Library 00003 Copyright (C) 2000 Laurent Najman 00004 00005 This program is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU General Public License 00007 as published by the Free Software Foundation; either version 2 00008 of the License, or (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 00019 You can contact the author at 00020 mailto:laurent@najman.org 00021 and download the latest version at 00022 http://www.laurentnajman.org 00023 */ 00024 00025 // File.h: interface for the CMMFile class. 00026 // 00028 00029 #if !defined(AFX_FILE_H__3E9B40A7_8698_11D4_B181_E5930507415E__INCLUDED_) 00030 #define AFX_FILE_H__3E9B40A7_8698_11D4_B181_E5930507415E__INCLUDED_ 00031 00032 #ifndef SWIG // Remove whatever is not needed by SWIG 00033 00034 #if _MSC_VER >= 1000 00035 #pragma once 00036 #endif // _MSC_VER >= 1000 00037 00038 00039 #include "Error.h" 00040 #include "ImageGrey.h" 00041 00042 #endif // SWIG 00043 00063 class CMMFile : public CError 00064 { 00065 public: 00066 CMMFile(); 00067 virtual ~CMMFile(); 00068 00070 CImageGrey * PGMRead(const char * filename); 00072 int PGMWrite(const CImageGrey *img, const char * filename); 00073 }; 00074 00075 #endif // !defined(AFX_FILE_H__3E9B40A7_8698_11D4_B181_E5930507415E__INCLUDED_)