You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef GUICONSTANTS_H |
|
#define GUICONSTANTS_H |
|
|
|
/* milliseconds between model updates */ |
|
static const int MODEL_UPDATE_DELAY = 250; |
|
|
|
/* size of cache */ |
|
static const unsigned int WALLET_CACHE_SIZE = 100; |
|
|
|
|
|
#endif // GUICONSTANTS_H
|
|
|