blob: 5fc9e85fcee63225a54ee28983b79f0f64edbb74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "Swiften/SASL/ClientAuthenticator.h"
namespace Swift {
ClientAuthenticator::ClientAuthenticator(const String& name) : name(name) {
}
ClientAuthenticator::~ClientAuthenticator() {
}
}
|