ges-pitivi-formatter: move libxml includes into .c file

There's no need to have them in the header file.
This commit is contained in:
Tim-Philipp Müller 2012-03-12 15:09:39 +00:00
parent 2fc0a0c619
commit 6a3391eae8
2 changed files with 8 additions and 8 deletions

View file

@ -1,3 +1,11 @@
#include <libxml/xmlreader.h>
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include "libxml/encoding.h"
#include "libxml/xmlwriter.h"
#include <ges/ges.h>
#include <inttypes.h>
#include <unistd.h>

View file

@ -1,13 +1,5 @@
#ifndef _GES_PITIVI_FORMATTER
#define _GES_PITIVI_FORMATTER
#include <libxml/xmlreader.h>
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
#include "libxml/encoding.h"
#include "libxml/xmlwriter.h"
#define GES_TYPE_PITIVI_FORMATTER ges_pitivi_formatter_get_type()