HFST - Helsinki Finite-State Transducer Technology - C++ API  version 3.9.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
hfstdll.h
1 // Copyright (c) 2016 University of Helsinki
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 3 of the License, or (at your option) any later version.
7 // See the file COPYING included with this distribution for more
8 // information.
9 
10 #ifndef _HFSTDLL_H_
11 #define _HFSTDLL_H_
12 #ifdef _MSC_VER
13 #ifdef HFSTEXPORT
14 #define HFSTDLL __declspec(dllexport)
15 #else
16 #define HFSTDLL __declspec(dllimport)
17 #endif // HFSTEXPORT
18 #else
19 #define HFSTDLL
20 #endif // _MSC_VER
21 #endif // _HFSTDLL_H_