54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*
|
|
* moooutputfilterregex.h
|
|
*
|
|
* Copyright (C) 2004-2007 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1 as published by the Free Software Foundation.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef MOOEDIT_COMPILATION
|
|
#error "This file may not be used directly"
|
|
#endif
|
|
|
|
#ifndef MOO_OUTPUT_FILTER_REGEX_H
|
|
#define MOO_OUTPUT_FILTER_REGEX_H
|
|
|
|
#include <mooedit/moooutputfilter.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
#define MOO_TYPE_OUTPUT_FILTER_REGEX (_moo_output_filter_regex_get_type ())
|
|
#define MOO_OUTPUT_FILTER_REGEX(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_OUTPUT_FILTER_REGEX, MooOutputFilterRegex))
|
|
#define MOO_OUTPUT_FILTER_REGEX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_OUTPUT_FILTER_REGEX, MooOutputFilterRegexClass))
|
|
#define MOO_IS_OUTPUT_FILTER_REGEX(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_OUTPUT_FILTER_REGEX))
|
|
#define MOO_IS_OUTPUT_FILTER_REGEX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_OUTPUT_FILTER_REGEX))
|
|
#define MOO_OUTPUT_FILTER_REGEX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_OUTPUT_FILTER_REGEX, MooOutputFilterRegexClass))
|
|
|
|
typedef struct _MooOutputFilterRegex MooOutputFilterRegex;
|
|
typedef struct _MooOutputFilterRegexPrivate MooOutputFilterRegexPrivate;
|
|
typedef struct _MooOutputFilterRegexClass MooOutputFilterRegexClass;
|
|
|
|
struct _MooOutputFilterRegex {
|
|
MooOutputFilter base;
|
|
MooOutputFilterRegexPrivate *priv;
|
|
};
|
|
|
|
struct _MooOutputFilterRegexClass {
|
|
MooOutputFilterClass base_class;
|
|
};
|
|
|
|
|
|
GType _moo_output_filter_regex_get_type (void) G_GNUC_CONST;
|
|
|
|
void _moo_command_filter_regex_load (void);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* MOO_OUTPUT_FILTER_REGEX_SIMPLE_H */
|