TFCweb  1.0.4 $Rev: 483 $
TFC Primavera 2012: Nucli d'un servidor web
Base64.h
Veure la documentació d'aquest fitxer.
1 #if !defined(_TFC_BASE64_H_)
2 #define _TFC_BASE64_H_
3 
10 /*
11  * Copyright (c) 2012 Toni Corvera
12  *
13  * This file is part of TFCWeb.
14  *
15  * TFCWeb is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * TFCWeb is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with TFCWeb. If not, see <http://www.gnu.org/licenses/>.
27  */
28 
29 #include <string>
30 
31 namespace tfc {
32 
47 namespace Base64 {
48 
54 std::string codifica(const std::string & s);
55 
62 std::string descodifica(const std::string & s);
63 
64 } // ns Base64
65 
66 } // ns tfc
67 
68 #endif // _TFC_BASE64_H_
69 
70 // vim:set ts=4 et ai: //