~ubuntu-branches/ubuntu/trusty/libwpd/trusty

« back to all changes in this revision

Viewing changes to src/lib/WP6LLListener.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta (mhatta)
  • Date: 2004-06-20 02:41:29 UTC
  • Revision ID: james.westby@ubuntu.com-20040620024129-h103i0nsx8qvxpg6
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

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
}