blob: 8273c787d819b9ab0acc3d75a6fe560a49995e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (c) 2012 Isode Limited, London, England.
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <string>
namespace Swift {
std::string selectCAPICertificate();
bool isCAPIURI(std::string uri);
}
|