~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/WP6LLListener.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-12-09 16:20:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051209162002-6yx3aa0jrh06oocj
Tags: 0.8.4-2
* re-autogen to fix hppa build
* update automake builddep and add autoconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* libwpd
2
 
 * Copyright (C) 2002 William Lachance (william.lachance@sympatico.ca)
3
 
 * Copyright (C) 2002 Marc Maurer (j.m.maurer@student.utwente.nl)
4
 
 *  
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18
 
 *
19
 
 * For further information visit http://libwpd.sourceforge.net
20
 
 */
21
 
 
22
 
/* "This product is not manufactured, approved, or supported by 
23
 
 * Corel Corporation or Corel Corporation Limited."
24
 
 */
25
 
#include "WP6LLListener.h"
26
 
#include "WP6PrefixData.h"
27
 
#include "WP6FontDescriptorPacket.h"
28
 
#include "WP6DefaultInitialFontPacket.h"
29
 
#include "WP6FileStructure.h"
30
 
 
31
 
const WP6PrefixDataPacket * WP6LLListener::getPrefixDataPacket(const int prefixID) const
32
 
33
 
        return m_prefixData->getPrefixDataPacket(prefixID); 
34
 
}