23 lines
433 B
C++
23 lines
433 B
C++
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
# ifdef SWF_EXPORT_DLL
|
|
# define SWF_API __declspec(dllexport)
|
|
# else
|
|
# define SWF_API __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# ifdef SWF_EXPORT_DLL
|
|
# define SWF_API __attribute__((visibility("default")))
|
|
# else
|
|
# define SWF_API
|
|
# endif
|
|
#endif
|
|
|
|
// 公共头文件
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <algorithm> |