~ubuntu-branches/ubuntu/wily/libwpd/wily-proposed

« back to all changes in this revision

Viewing changes to src/conv/html/wpd2html.cpp

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2013-05-14 11:01:45 UTC
  • mfrom: (1.5.4)
  • Revision ID: package-import@ubuntu.com-20130514110145-8g97krfs7eoqyuwl
Tags: 0.9.8-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <stdio.h>
24
24
#include "HtmlDocumentGenerator.h"
25
 
#include "libwpd-stream.h"
26
 
#include "libwpd.h"
 
25
#include <libwpd/libwpd.h>
 
26
#include <libwpd-stream/libwpd-stream.h>
27
27
#include <string.h>
28
28
 
 
29
#ifdef HAVE_CONFIG_H
 
30
#include "config.h"
 
31
#endif
 
32
 
 
33
#ifndef VERSION
 
34
#define VERSION "UNKNOWN VERSION"
 
35
#endif
 
36
 
29
37
namespace
30
38
{
31
39
 
42
50
 
43
51
int printVersion()
44
52
{
45
 
        printf("wpd2html %s\n", LIBWPD_VERSION_STRING);
 
53
        printf("wpd2html %s\n", VERSION);
46
54
        return 0;
47
55
}
48
56