#!/bin/sh
################################################################ 
#                                                              #
#                   DataVision start script                    #
#                                                              #
################################################################ 

# ---------------configure here!!!-------------------
#
# where can i find wishx
#
if test "$WISHX_PATH" = ""; then
   WISHX_PATH=---path_of_wishx---
   export WISHX_PATH
fi

# where can i find my program code
#
if test "$DV_HOME" = ""; then
   DV_HOME=---home_of_dv---
   export DV_HOME
fi

# where can i find my help files
#
if test "$DV_HELP_DIR" = ""; then
    DV_HELP_DIR=---dir_of_helptext---
    export DV_HELP_DIR
fi

# ---------------------------------------------------

$WISHX_PATH -f $DV_HOME/main/dvmain.tcl -name dv
