Column-oriented GPU-accelerated Database Management System
CoGaDB
|
00001 /*********************************************************************************************************** 00002 Copyright (c) 2013, Robin Haberkorn, Otto-von-Guericke University of Magdeburg, Germany. All rights reserved. 00003 00004 This program and accompanying materials are made available under the terms of the 00005 GNU LESSER GENERAL PUBLIC LICENSE - Version 3, http://www.gnu.org/licenses/lgpl-3.0.txt 00006 ***********************************************************************************************************/ 00007 00008 #ifndef __HYPE_CONFIG_EXPORTS_HPP 00009 #define __HYPE_CONFIG_EXPORTS_HPP 00010 00011 #ifdef _WIN32 00012 00013 #ifdef HYPE_MAKE_SHARED 00014 #define HYPE_EXPORT __declspec(dllexport) 00015 #elif defined(HYPE_USE_SHARED) 00016 #define HYPE_EXPORT __declspec(dllimport) 00017 #endif 00018 00019 #endif 00020 00021 #ifndef HYPE_EXPORT 00022 #define HYPE_EXPORT 00023 #endif 00024 00025 #endif