00001 /// \file hashDefault.h This file is the default hash used by the labeled stream, if the user does not implement one */ 00002 00003 #ifndef HASH_DEFAULT_H 00004 #define HASH_DEFAULT_H 00005 00006 #include <stdio.h> 00007 #include <string.h> 00008 00009 /// used when we cant read a hash from lib associated with outputport 00010 int hashDefault(char *label, int image); 00011 void mlsHashDefault(char *label, int image, int destArray[]); 00012 00013 #endif
1.4.6