#import "StoveSDKNativeInterface.h"

#ifndef BaseNativeInterface_h
#define BaseNativeInterface_h

#if __cplusplus
STOVE_SDK_EXTERNC
{
#endif /* __cplusplus */

    void stove_base_initialize(const char *environment, const char *identifier);
    int stove_base_getLanguage();
    void stove_base_setLanguage(int language);
    const char *stove_base_get(const char *key);
    const char *stove_base_version();
    void stove_base_setBuildConfiguration(const char *buildConfiguration);
    bool stove_base_get_bool(const char *key, bool defaultValue);


#if __cplusplus
}
#endif /* __cplusplus */

#endif /* BaseNativeInterface_h */
