/usr/include/cutter/soupcutter.h is in libsoupcutter-dev 1.1.7-1.2ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Copyright (C) 2009 Yuto HAYAMIZU <y.hayamizu@gmail.com>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __SOUPCUTTER_H__
#define __SOUPCUTTER_H__
#include <libsoup/soup.h>
#include <gcutter.h>
#include <soupcutter/soupcut-client.h>
#include <soupcutter/soupcut-server.h>
#include <soupcutter/soupcut-assertions.h>
/**
* SECTION: soupcutter
* @title: SoupCutter
* @short_description: HTTP supported Cutter with libsoup.
* @see_also: <link
* linkend="cutter-Assertions-for-HTTP-client-and-server">
* Assertions for HTTP client/server based on libsoup</link>
*
* SoupCutter adds many useful HTTP related features based
* on libsoup to Cutter. If you want to write tests for
* HTTP, it's good idea that you consider SoupCutter to be
* used too.
*
* It's easy to use SoupCutter. You just include
* <soupcuttter.h> instead of <cutter.h>
* or <gcutter.h> and use soupcutter-pixbuf.pc instead
* of cutter.pc or gcutter.pc:
*
* test-xxx.c:
* |[
* -#include <cutter.h>
* +#include <soupcutter.h>
* ]|
*
* configure.ac:
* |[
* -AC_CHECK_CUTTER
* +AC_CHECK_SOUPCUTTER
* ]|
*
* Makefile.am:
* |[
* -XXX_CFLAGS = $(CUTTER_CFLAGS)
* -XXX_LIBS = $(CUTTER_LIBS)
* +XXX_CFLAGS = $(SOUPCUTTER_CFLAGS)
* +XXX_LIBS = $(SOUPCUTTER_LIBS)
* ]|
*/
/**
* SOUPCUTTER_ENABLED
*
* Defined when SoupCutter is enabled.
*
* Since: 1.0.8
*/
#define SOUPCUTTER_ENABLED 1
#endif /* __SOUPCUTTER_H__ */
/*
vi:nowrap:ai:expandtab:sw=4
*/
|