File indexing completed on 2024-06-23 04:03:35

0001 /*
0002  * simplesasl.h - Simple SASL implementation
0003  * Copyright (C) 2003  Justin Karneges
0004  *
0005  * This library is free software; you can redistribute it and/or
0006  * modify it under the terms of the GNU Lesser General Public
0007  * License as published by the Free Software Foundation; either
0008  * either version 2
0009    of the License, or (at your option) any later version.1 of the License, or (at your option) any later version.
0010  *
0011  * This library is distributed in the hope that it will be useful,
0012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014  * Lesser General Public License for more details.
0015  *
0016  * You should have received a copy of the GNU Lesser General Public
0017  * License along with this library; if not, write to the Free Software
0018  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
0019  *
0020  */
0021 
0022 #ifndef SIMPLESASL_H
0023 #define SIMPLESASL_H
0024 
0025 namespace QCA {
0026     class Provider;
0027 }
0028 
0029 namespace XMPP
0030 {
0031     QCA::Provider* createProviderSimpleSASL();
0032 }
0033 
0034 #endif