Mercurial > trustbridge
comparison common/listutil.h @ 70:64c8c6350e60
Add default constructor to certificatelist. Remove Q_OBJECT use
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 11:31:08 +0000 |
parents | 8ffbb48528ae |
children | 571f68c7a38f |
comparison
equal
deleted
inserted
replaced
69:92f523997086 | 70:64c8c6350e60 |
---|---|
21 TooLarge = 2, // Failed because the file exeeds the limit | 21 TooLarge = 2, // Failed because the file exeeds the limit |
22 InvalidFormat = 3, // File does not appear to be in list format | 22 InvalidFormat = 3, // File does not appear to be in list format |
23 InvalidSignature = 4, // Signature was invalid | 23 InvalidSignature = 4, // Signature was invalid |
24 SeekFailed = 5, // Could not seek in the file | 24 SeekFailed = 5, // Could not seek in the file |
25 ReadFailed = 6, // File exists but could not read the file | 25 ReadFailed = 6, // File exists but could not read the file |
26 IncompatibleVersion = 7 // The Format Version does not match | 26 IncompatibleVersion = 7, // The Format Version does not match |
27 NoList = 8 // No list parsed | |
27 } list_status_t; | 28 } list_status_t; |
28 | 29 |
29 /* Definitions based on the format */ | 30 /* Definitions based on the format */ |
30 #define MAX_LINE_LENGTH 1000 | 31 #define MAX_LINE_LENGTH 1000 |
31 #define MAX_LINES 1000 | 32 #define MAX_LINES 1000 |