You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downloadclient/downloadclient.cc

26 lines
483 B

4 years ago
// this file is under GNU General Public License 3.0
// see LICENSE.txt
#include "downloadclient.hh"
#include "UpdateStream.hh"
4 years ago
#include <iostream>
#include <sstream>
4 years ago
namespace pEp {
namespace UpdateClient {
/*
istream update(const product& p)
{
try {
return UpdateStream(p);
}
catch (NoUpdateAvailable&) {
return stringstream(string(""));
}
}
*/
}
}
4 years ago