You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
435 B

// Copyright (c) 2014, Brad Parker
// This file is licensed under the BSD 2-clause license.
#include <QtGlobal>
#if defined(QIPROUTE_LIBRARY)
# define QIPROUTE_EXPORT Q_DECL_EXPORT
#else
# define QIPROUTE_EXPORT Q_DECL_IMPORT
#endif
#ifdef WIN32
#define QIPROUTE_LOCAL
#define QIPROUTE_PUBLIC
#else
#define QIPROUTE_LOCAL __attribute__((visibility("hidden")))
#define QIPROUTE_PUBLIC __attribute__((visibility("default")))
#endif