summaryrefslogtreecommitdiff
path: root/src/cr-stylesheet.h
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@src.gnome.org>2003-04-12 16:50:32 +0000
committerDodji Seketeli <dodji@src.gnome.org>2003-04-12 16:50:32 +0000
commit17114030e0e37f93682c903dd818da1f0e2e6f6b (patch)
treef52286082af39c649dfbc86015ab080ac2a55abd /src/cr-stylesheet.h
parent4f5560ef67d35121d1087aee9b5e34dece012d8a (diff)
downloadlibcroco-17114030e0e37f93682c903dd818da1f0e2e6f6b.tar.gz
big tree layout cleanup.
Dodji.
Diffstat (limited to 'src/cr-stylesheet.h')
-rw-r--r--src/cr-stylesheet.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/cr-stylesheet.h b/src/cr-stylesheet.h
deleted file mode 100644
index a19c04c..0000000
--- a/src/cr-stylesheet.h
+++ /dev/null
@@ -1,80 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
-
-/*
- * This file is part of The Croco Library
- *
- * Copyright (C) 2002-2003 Dodji Seketeli <dodji@seketeli.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2.1 of the GNU Lesser 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 Lesser 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
- */
-
-/*
- *$Id$
- */
-
-#ifndef __CR_STYLESHEET_H__
-#define __CR_STYLESHEET_H__
-
-#include "cr-utils.h"
-#include "cr-statement.h"
-
-/**
- *@file
- *The declaration of the #CRStyleSheet class.
- */
-
-/**
- *An abstraction of a css stylesheet as defined
- *by the css2 spec in chapter 4.
- */
-struct _CRStyleSheet
-{
- /**The css statements list*/
- CRStatement *statements ;
-
- /**custom data used by libcroco*/
- void *croco_data ;
-
- /**
- *custom application data pointer
- *Can be used by applications.
- */
- void * app_data ;
-
- /**
- *the reference count of this insance
- *Please, don't never ever modify it
- *directly. Use cr_stylesheet_ref()
- *and cr_stylesheet_unref() instead.
- */
- gulong ref_count ;
-} ;
-
-CRStyleSheet *
-cr_stylesheet_new (CRStatement *a_stmts) ;
-
-void
-cr_stylesheet_dump (CRStyleSheet *a_this, FILE *a_fp) ;
-
-void
-cr_stylesheet_ref (CRStyleSheet *a_this) ;
-
-gboolean
-cr_stylesheet_unref (CRStyleSheet *a_this) ;
-
-void
-cr_stylesheet_destroy (CRStyleSheet *a_this) ;
-
-#endif /*__CR_STYLESHEET_H__*/