OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimPointHash.h
Go to the documentation of this file.
1 //*******************************************************************
2 // Copyright (C) 2000 ImageLinks Inc.
3 //
4 // License: MIT
5 //
6 // See LICENSE.txt file in the top level directory for more details.
7 //
8 // Author: Garrett Potts
9 //
10 // Description: Point Hash is a base for hashing functions
11 //
12 //*******************************************************************
13 // $Id: ossimPointHash.h 9094 2006-06-13 19:12:40Z dburken $
14 
15 #ifndef ossimPointHash_HEADER
16 #define ossimPointHash_HEADER
17 #include <ossim/base/ossimDpt.h>
18 #include <ossim/base/ossimFpt.h>
19 
21 {
22 public:
23  virtual ~ossimPointHash(){}
24  virtual long operator ()(const ossimDpt &aPoint)=0;
25  virtual long operator ()(const ossimFpt &aPoint)=0;
26 };
27 
28 #endif
#define OSSIMDLLEXPORT
virtual ~ossimPointHash()