Main Page   Modules   Class Hierarchy   Compound List   File List   Compound Members   Related Pages  

Queue.h

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 // Queue.h: interface for the CQueue class.
00026 //
00028 
00029 #if !defined(AFX_QUEUE_H__902D4206_F56E_4C6B_9F95_D5435D4EEF91__INCLUDED_)
00030 #define AFX_QUEUE_H__902D4206_F56E_4C6B_9F95_D5435D4EEF91__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 "PixelTypes.h"
00040 
00041 #endif // SWIG
00042 
00056 class CQueue  
00057 {
00058 public:
00059 
00061         virtual void add(LPPIXEL p) = 0;
00063         virtual void add(LPPIXEL p, short parity) = 0;
00064 
00066         virtual void first(LPPIXEL *p) = 0;
00068         virtual void first(LPPIXEL *p, short *parity) = 0;
00069 
00071         virtual bool empty() = 0;
00072 
00074         virtual void invert() = 0;
00075 
00076 };
00077 
00078 #endif // !defined(AFX_QUEUE_H__902D4206_F56E_4C6B_9F95_D5435D4EEF91__INCLUDED_)

Generated at Sun May 12 19:04:22 2002 for OpenMorpho by doxygen1.2.0 written by Dimitri van Heesch, © 1997-2000