/**
 * @file julia_${PROGRAM_NAME}.h
 *
 * This is an autogenerated header file for functions specified to the %NAME%
 * binding to be called by Julia.
 */
#ifndef JULIA_${PROGRAM_NAME}_H
#define JULIA_${PROGRAM_NAME}_H

#include <stddef.h>

#if defined(__cplusplus) || defined(c_plusplus)

extern "C"
{
#endif

bool ${PROGRAM_NAME}();

// This is just used to force Julia to load each .so in the order we need.
void loadSymbols();

// Any definitions of methods for dealing with model pointers will be put below
// this comment, if needed.
${MODEL_PTR_DEFNS}

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif

#endif
