BITMAP_INFO kicommon
This commit is contained in:
parent
2b0d091636
commit
e2c2875765
|
@ -46,6 +46,7 @@ set( KICOMMON_SRCS
|
|||
asset_archive.cpp
|
||||
array_axis.cpp
|
||||
array_options.cpp
|
||||
bitmap_info.cpp
|
||||
exceptions.cpp
|
||||
lib_id.cpp
|
||||
locale_io.cpp
|
||||
|
@ -364,7 +365,6 @@ set( COMMON_SRCS
|
|||
bin_mod.cpp
|
||||
bitmap.cpp
|
||||
bitmap_base.cpp
|
||||
bitmap_info.cpp
|
||||
bitmap_store.cpp
|
||||
board_printout.cpp
|
||||
build_version.cpp
|
||||
|
|
|
@ -21,13 +21,14 @@
|
|||
#ifndef KICAD_BITMAP_INFO_H
|
||||
#define KICAD_BITMAP_INFO_H
|
||||
|
||||
#include <kicommon.h>
|
||||
#include <vector>
|
||||
#include <unordered_map>
|
||||
#include <bitmaps/bitmaps_list.h>
|
||||
|
||||
#include <wx/string.h>
|
||||
|
||||
struct BITMAP_INFO
|
||||
struct KICOMMON_API BITMAP_INFO
|
||||
{
|
||||
BITMAPS id;
|
||||
wxString filename;
|
||||
|
@ -44,7 +45,7 @@ struct BITMAP_INFO
|
|||
};
|
||||
|
||||
|
||||
extern void BuildBitmapInfo( std::unordered_map<BITMAPS,
|
||||
extern KICOMMON_API void BuildBitmapInfo( std::unordered_map<BITMAPS,
|
||||
std::vector<BITMAP_INFO>>& aBitmapInfoCache );
|
||||
|
||||
#endif // KICAD_BITMAP_INFO_H
|
||||
|
|
Loading…
Reference in New Issue