lib/css.h

Code
Comments
Other
Rev Date Author Line
284 06 May 07 peter 1 #ifndef _theplu_svndigest_css_
284 06 May 07 peter 2 #define _theplu_svndigest_css_
177 02 Sep 06 peter 3
177 02 Sep 06 peter 4 // $Id$
177 02 Sep 06 peter 5
177 02 Sep 06 peter 6 /*
1635 30 Mar 23 peter 7   Copyright (C) 2006, 2007 Peter Johansson
1635 30 Mar 23 peter 8   Copyright (C) 2008 Jari Häkkinen, Peter Johansson
177 02 Sep 06 peter 9
687 04 Aug 08 peter 10   This file is part of svndigest, http://dev.thep.lu.se/svndigest
177 02 Sep 06 peter 11
177 02 Sep 06 peter 12   svndigest is free software; you can redistribute it and/or modify it
177 02 Sep 06 peter 13   under the terms of the GNU General Public License as published by
693 11 Sep 08 jari 14   the Free Software Foundation; either version 3 of the License, or
177 02 Sep 06 peter 15   (at your option) any later version.
177 02 Sep 06 peter 16
177 02 Sep 06 peter 17   svndigest is distributed in the hope that it will be useful, but
177 02 Sep 06 peter 18   WITHOUT ANY WARRANTY; without even the implied warranty of
177 02 Sep 06 peter 19   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
177 02 Sep 06 peter 20   General Public License for more details.
177 02 Sep 06 peter 21
177 02 Sep 06 peter 22   You should have received a copy of the GNU General Public License
693 11 Sep 08 jari 23   along with svndigest. If not, see <http://www.gnu.org/licenses/>.
177 02 Sep 06 peter 24 */
177 02 Sep 06 peter 25
177 02 Sep 06 peter 26 #include <string>
177 02 Sep 06 peter 27
177 02 Sep 06 peter 28 namespace theplu{
177 02 Sep 06 peter 29 namespace svndigest{
177 02 Sep 06 peter 30
177 02 Sep 06 peter 31   ///
234 09 Apr 07 peter 32   /// \brief printing cascading style sheet to file name @a str.
178 02 Sep 06 peter 33   ///
234 09 Apr 07 peter 34   void print_css(const std::string& str);
178 02 Sep 06 peter 35
177 02 Sep 06 peter 36 }} // end of namespace svndigest end of namespace theplu
177 02 Sep 06 peter 37
1513 23 Sep 12 peter 38 #endif