/normxcorr/trunk

To get this branch, use:
bzr branch http://suren.me/webbzr/normxcorr/trunk

« back to all changes in this revision

Viewing changes to dict_hw/src/dict_hw_test.cpp

  • Committer: Suren A. Chilingaryan
  • Date: 2010-04-17 07:43:38 UTC
  • Revision ID: csa@dside.dyndns.org-20100417074338-l45lxndn5tv72bpx
Patches for windows port

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
#include <sys/types.h>
6
6
#include <sys/stat.h>
7
 
#include <unistd.h>
8
7
 
9
8
#ifdef DICT_HW_MEASURE_TIMINGS
10
9
# include <sys/time.h>
11
10
#endif /* DICT_HW_MEASURE_TIMINGS */
12
11
 
13
 
#include <getopt.h>
 
12
#if defined(_WIN32) || defined(_WIN64)
 
13
# include "win/getopt.h"
 
14
#else 
 
15
# include <getopt.h>
 
16
#endif
14
17
 
15
18
#include <glib.h>
16
19