mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
8 lines
253 B
C++
8 lines
253 B
C++
#include "IUrlFactory.h"
|
|
|
|
class UrlFactory : public IUrlFactory
|
|
{
|
|
public:
|
|
virtual bool sendMail(const MailServer &server, const std::vector<std::string> &to,
|
|
const std::string &subject, const std::string &message, std::string *errmsg=NULL);
|
|
}; |