This project is a demonstrator tool, made by the MOISE project, that translates timed Altarica models into Fiacre models. Such translation allows to use model checkers such as Tina to prove properties. The project contains the translator tool.
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.

22 lines
594 B

6 years ago
#ifndef _WXSFDEFS_H
#define _WXSFDEFS_H
#ifdef USING_SOURCE_SF
#define WXDLLIMPEXP_SF
#define WXDLLIMPEXP_DATA_SF(type) type
#elif defined( LIB_USINGDLL )
#define WXDLLIMPEXP_SF
#define WXDLLIMPEXP_DATA_SF(type)
#elif defined( WXMAKINGDLL_WXSF )
#define WXDLLIMPEXP_SF WXEXPORT
#define WXDLLIMPEXP_DATA_SF(type) WXEXPORT type
#elif defined(WXUSINGDLL)
#define WXDLLIMPEXP_SF WXIMPORT
#define WXDLLIMPEXP_DATA_SF(type) WXIMPORT type
#else // not making nor using DLL
#define WXDLLIMPEXP_SF
#define WXDLLIMPEXP_DATA_SF(type) type
#endif
#endif//_WXSFDEFS_H