23 lines
439 B
C
23 lines
439 B
C
#pragma once
|
|
|
|
#ifndef LAMPMAINWIDGET_H_
|
|
#define LAMPMAINWIDGET_H_
|
|
|
|
//#include <QtCore/qglobal.h>
|
|
|
|
//# if defined(LAMPMAINWIDGET_LIB)
|
|
//# define LAMPMAINWIDGET_EXPORT Q_DECL_EXPORT
|
|
//# else
|
|
//# define LAMPMAINWIDGET_EXPORT Q_DECL_IMPORT
|
|
//# endif
|
|
|
|
#ifdef RASTERMAINWIDGETGUI_LIB
|
|
#define RASTERMAINWIDGETGUI_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define RASTERMAINWIDGETGUI_EXPORT __declspec(dllimport)
|
|
#endif
|
|
|
|
|
|
#endif // !LAMPMAINWIDGET_H_
|
|
|