blob: f0e8e2e4f366df54bf3271514c783923995e605c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "api.h"
namespace MirrorSearch {
void
XmlError::ice_print(std::ostream&s) const
{
s << msg;
}
void
CurlError::ice_print(std::ostream&s) const
{
s << msg;
}
}
|