blob: ba9e09b2ee715ae4c68f37a89143456cd41c73e2 (
plain) (
blame)
1
2
3
4
5
6
|
#include "schema.h"
template <>
void Out<NSQLComplete::TFolderEntry>(IOutputStream& out, const NSQLComplete::TFolderEntry& entry) {
out << "{" << entry.Type << ", " << entry.Name << "}";
}
|