gui/i18n.h
author deba
Wed, 17 May 2006 09:07:24 +0000
changeset 2089 fce8db723736
permissions -rw-r--r--
SimpleBucketHeap added

It does not supports erasing, decreasing, increasing.
It contains single linked lists

It can be used to store levels for push-relabel algorithms
     1 #ifndef I18N_H
     2 #define I18N_H
     3 
     4 #include "gettext.h"
     5 #define _(string) gettext (string)
     6 
     7 #endif