#include <stdio.h>
#include <string>
#include <math.h>
#include <libwpd/libwpd.h>
#include <libwpd-stream/libwpd-stream.h>
#include <stdint.h>
#include <inttypes.h>
Go to the source code of this file.
Classes | |
class | libfreehand::EndOfStreamException |
class | libfreehand::GenericException |
Namespaces | |
namespace | libfreehand |
Defines | |
#define | FH_EPSILON 1E-6 |
#define | FH_ALMOST_ZERO(m) (fabs(m) <= FH_EPSILON) |
#define | FH_DEBUG_MSG(M) |
#define | FH_DEBUG(M) |
Functions | |
uint8_t | libfreehand::readU8 (WPXInputStream *input) |
uint16_t | libfreehand::readU16 (WPXInputStream *input) |
uint32_t | libfreehand::readU32 (WPXInputStream *input) |
int8_t | libfreehand::readS8 (WPXInputStream *input) |
int16_t | libfreehand::readS16 (WPXInputStream *input) |
int32_t | libfreehand::readS32 (WPXInputStream *input) |
#define FH_ALMOST_ZERO | ( | m | ) | (fabs(m) <= FH_EPSILON) |
Referenced by libfreehand::FHTransform::applyToArc(), and libfreehand::FHParser::readRectangle().
#define FH_DEBUG | ( | M | ) |
#define FH_DEBUG_MSG | ( | M | ) |
Referenced by libfreehand::FHParser::parseDictionary(), libfreehand::FHParser::parseRecord(), libfreehand::FHParser::parseRecordList(), libfreehand::FHParser::parseRecords(), libfreehand::FHParser::readMName(), libfreehand::FHParser::readMString(), libfreehand::FHParser::readPath(), libfreehand::readU16(), libfreehand::readU32(), libfreehand::readU8(), and libfreehand::FHParser::readUString().
#define FH_EPSILON 1E-6 |