19 lines
243 B
C++
19 lines
243 B
C++
|
#include "calculator_c_interface_lib.h"
|
||
|
#include "tariff_editor.h"
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
bool CACULATOR_C_INTERFACE_LIB_EXPORT initTariffEditor() {
|
||
|
TariffEditor editor;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|