aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-chomp.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2003-02-26 04:45:22 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-02-26 04:45:22 +0800
commitbcae81e843f55fc25b2e1cde637bae54f3ac73e8 (patch)
tree2ea7fc98d4630d1c1d07a611e94cf023582ddff4 /camel/camel-mime-filter-chomp.h
parent35bce8194110451a354c31be4cf22c5f965b48c5 (diff)
downloadgsoc2013-evolution-bcae81e843f55fc25b2e1cde637bae54f3ac73e8.tar.gz
gsoc2013-evolution-bcae81e843f55fc25b2e1cde637bae54f3ac73e8.tar.zst
gsoc2013-evolution-bcae81e843f55fc25b2e1cde637bae54f3ac73e8.zip
removed unused filter code that was wrong anyway
svn path=/trunk/; revision=20058
Diffstat (limited to 'camel/camel-mime-filter-chomp.h')
-rw-r--r--camel/camel-mime-filter-chomp.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/camel/camel-mime-filter-chomp.h b/camel/camel-mime-filter-chomp.h
deleted file mode 100644
index 6e0081a475..0000000000
--- a/camel/camel-mime-filter-chomp.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Copyright (C) 2002 Ximian Inc.
- *
- * Authors: Jeffrey Stedfast <fejj@ximian.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * This program 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
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-
-#ifndef _CAMEL_MIME_FILTER_CHOMP_H
-#define _CAMEL_MIME_FILTER_CHOMP_H
-
-#ifdef __cplusplus
-extern "C" {
-#pragma }
-#endif /* __cplusplus */
-
-#include <camel/camel-mime-filter.h>
-
-#define CAMEL_MIME_FILTER_CHOMP_TYPE (camel_mime_filter_chomp_get_type ())
-#define CAMEL_MIME_FILTER_CHOMP(obj) CAMEL_CHECK_CAST (obj, CAMEL_MIME_FILTER_CHOMP_TYPE, CamelMimeFilterChomp)
-#define CAMEL_MIME_FILTER_CHOMP_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, CAMEL_MIME_FILTER_CHOMP_TYPE, CamelMimeFilterChompClass)
-#define CAMEL_IS_MIME_FILTER_CHOMP(obj) CAMEL_CHECK_TYPE (obj, CAMEL_MIME_FILTER_CHOMP_TYPE)
-
-typedef struct _CamelMimeFilterChompClass CamelMimeFilterChompClass;
-
-struct _CamelMimeFilterChomp {
- CamelMimeFilter parent;
-
-};
-
-struct _CamelMimeFilterChompClass {
- CamelMimeFilterClass parent_class;
-};
-
-CamelType camel_mime_filter_chomp_get_type (void);
-
-CamelMimeFilter *camel_mime_filter_chomp_new (void);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* ! _CAMEL_MIME_FILTER_CHOMP_H */