render.h 273 B

1234567891011121314
  1. #ifndef RENDER_H
  2. #define RENDER_H
  3. #include "door.h"
  4. #include "irc.h"
  5. #include <string>
  6. #include <vector>
  7. extern std::string timestamp_format;
  8. void render(message_stamp &irc_msg, door::Door &door, ircClient &irc);
  9. void stamp(std::time_t &stamp, door::Door &door);
  10. #endif