Mod Cplusplus CVS committal
Author : johnksterling
Project : apr_cplusplus
Module : include
Dir : apr_cplusplus/include
Modified Files:
cpp_time.h
Log Message:
fix this to compile since there is some interest in looking at it again
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/include/cpp_time.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- cpp_time.h 19 Feb 2002 04:16:02 -0000 1.1
+++ cpp_time.h 15 Nov 2003 15:41:32 -0000 1.2
@@ -7,26 +7,26 @@
private:
apr_time_t mTime;
apr_pool_t *mPool;
- apr_exploded_time_t *mXTime;
+ apr_time_exp_t *mXTime;
void explode(void);
protected:
public:
APRTime(apr_pool_t *pPool);
APRTime(apr_pool_t *pPool, apr_time_t pTime);
APRTime(apr_pool_t *pPool, time_t pAnsiTime);
- APRTime(apr_pool_t *pPool, apr_exploded_time_t *pExplodedTime);
+ APRTime(apr_pool_t *pPool, apr_time_exp_t *pExplodedTime);
~APRTime(void);
apr_time_t Value(void);
- apr_exploded_time_t *ExplodedTime(apr_int32_t offset);
- apr_exploded_time_t *ExplodedGMTTime(void);
- apr_exploded_time_t *ExplodedLocalTime(void);
+ apr_time_exp_t *ExplodedTime(apr_int32_t offset);
+ apr_time_exp_t *ExplodedGMTTime(void);
+ apr_time_exp_t *ExplodedLocalTime(void);
char *RFC822Date(void);
char *CTime(void);
char *FormattedTime(apr_size_t *retsize, apr_size_t max,
const char *format);
void Sleep(void);
- /* below are members of a localtime apr_exploded_t */
+ /* below are members of a localtime apr_time_exp_t */
apr_int32_t LocalMicroSeconds(void);
apr_int32_t LocalSeconds(void);
apr_int32_t LocalMinutes(void);
|