MineLink
 All Data Structures Functions Variables Pages
functors.h
1 #ifndef __FUNCTORS_H__
2 #define __FUNCTORS_H__
3 
4 namespace delphos{
5 
6 class Block;
7 typedef float (*BlockFunctionPtr) (const delphos::Block & block);
8 typedef void (*CallBackPtr) (const double& percentage);
9 //typedef bool (*BlockFilterPtr) (const delphos::Block & block) ;
10 
11 }
12 #endif
A utility class to access blocks individually.
Definition: blockmodel.h:1390