00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __DSIM_INTERNAL__
00011 #define __DSIM_INTERNAL__
00012
00013 class dsim_model;
00014 class dsim_simulation;
00015 class dsim_integrator;
00016
00017 class dsim_model_setup
00018 {
00019 public:
00020 const char *name;
00021 dsim_simulation *sim;
00022 dsim_integrator *integrator;
00023 };
00024
00025 typedef void (*dsim_generic_func_t)();
00026 dsim_generic_func_t dsim_lookup_function(const char *func_name,const char *path);
00027
00028 #endif