1 // Copyright 2005-2019 The Mumble Developers. All rights reserved.
2 // Use of this source code is governed by a BSD-style license
3 // that can be found in the LICENSE file at the root of the
4 // Mumble source tree or at <https://www.mumble.info/LICENSE>.
5 
6 #ifndef MUMBLE_SSLLOCKS_H_
7 #define MUMBLE_SSLLOCKS_H_
8 
9 class SSLLocks {
10 	public:
11 		static void initialize();
12 		static void destroy();
13 };
14 
15 #endif
16