diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-11-12 17:05:30 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-11-12 17:05:30 +0000 |
commit | 509d136e9adb60c56369565b9545e613cac3678e (patch) | |
tree | f118d676edeae2d5e17f48b32b180d4761b60520 /src/util.h | |
parent | 3166bd631a093f42ea44a4b0f4d914cf51518bd4 (diff) | |
download | libbu++-509d136e9adb60c56369565b9545e613cac3678e.tar.gz libbu++-509d136e9adb60c56369565b9545e613cac3678e.tar.bz2 libbu++-509d136e9adb60c56369565b9545e613cac3678e.tar.xz libbu++-509d136e9adb60c56369565b9545e613cac3678e.zip |
I've started my campaign to clean up all of the header files in libbu++ as far
as includes go. This required a little bit of reworking as far as archive goes,
but I've been planning on changing it aronud for a bit anyway.
The final result here is that you may need to add some more includes in your
own code, libbu++ doesn't include as many random things you didn't ask for
anymore, most of these seem to be bu/hash.h, unistd.h, and time.h.
Also, any Archive functions and operators should use ArchiveBase when they can
instead of Archive, archivebase.h is a much lighterweight include that will
be used everywhere in core that it can be, there are a few classes that actually
want a specific archiver to be used, they will use it (such as the nids storage
class).
So far, except for adding header files, nothing has changed in functionality,
and no other code changes should be required, although the above mentioned
archive changeover is reccomended.
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -9,18 +9,20 @@ | |||
9 | #define BU_UTIL_H | 9 | #define BU_UTIL_H |
10 | 10 | ||
11 | #ifndef NULL | 11 | #ifndef NULL |
12 | #define NULL 0 | 12 | # define NULL 0 |
13 | #endif | 13 | #endif |
14 | 14 | ||
15 | /* I borrowed this from someone who borrowed it from glib who borrowed it | 15 | /* I borrowed this from someone who borrowed it from glib who borrowed it |
16 | * from... | 16 | * from... |
17 | */ | 17 | */ |
18 | #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) | 18 | #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) |
19 | #define DEPRECATED __attribute__((__deprecated__)) | 19 | # define DEPRECATED __attribute__((__deprecated__)) |
20 | #else | 20 | #else |
21 | #define DEPRECATED | 21 | # define DEPRECATED |
22 | #endif /* __GNUC__ */ | 22 | #endif /* __GNUC__ */ |
23 | 23 | ||
24 | #include <string.h> | ||
25 | |||
24 | namespace Bu | 26 | namespace Bu |
25 | { | 27 | { |
26 | /** | 28 | /** |
@@ -173,6 +175,8 @@ namespace Bu | |||
173 | * leap years into account. | 175 | * leap years into account. |
174 | */ | 176 | */ |
175 | int getDaysInMonth( int iMonth, int iYear ); | 177 | int getDaysInMonth( int iMonth, int iYear ); |
178 | |||
179 | void memcpy( void *pDest, const void *pSrc, size_t iBytes ); | ||
176 | }; | 180 | }; |
177 | 181 | ||
178 | #endif | 182 | #endif |