www.pudn.com > xml2db.rar > clog.h


/**
 *@file clog.h
 *@brief 记录文件日志的工具类
 *
 *Author: cuichao@boco.com.cn \n
 *ChangeLog: \n
 * 2005-9-27 19:48: create file \n
 */

class CLog
{
    public:
        CLog();
        ~CLog();
        bool init(const char *,long max_len);
        long write(const char *);
        bool cleanup();
        const char *GetErrstr();
    private:
        CLog(const CLog &);
        struct dm;
        dm *_dm;
};