#ifndef DKIMAPLIB_LOGF_H

#define DKIMAPLIB_LOGF_H

class logft
 {
 public:
  int printf(const char *module, const char *format, ...);
  int fileprintf(const char *filename, const char *module, const char *format, ...);
  void internalerror(const char *module, const char *error);

  void initialize();
  void openlog(const char *progam);
   
  logft()
   {
    initialize();
   }
   
  ~logft();

 private:
 };

extern logft logf; // logf.C

#endif


syntax highlighted by Code2HTML, v. 0.9.1