Skip to content
This repository has been archived by the owner on Oct 14, 2022. It is now read-only.

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveC committed Aug 12, 2004
0 parents commit 65a14b9
Show file tree
Hide file tree
Showing 230 changed files with 150,339 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# A simulation of Subversion default ignores, generated by reposurgeon.
*.o
*.lo
*.la
*.al
*.libs
*.so
*.so.[0-9]*
*.a
*.pyc
*.pyo
*.rej
*~
*.#*
.*.swp
.DS_store
# Simulated Subversion default ignores end here
Binary file added Gui.class
Binary file not shown.
Binary file added MyCanvas.class
Binary file not shown.
32 changes: 32 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<project name="openstreetmap" default="dist" basedir=".">

<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>


<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
</target>


<target name="compile" depends="init">
<javac srcdir="${src}" debug="true" optimize="off" destdir="${build}"/>
</target>


<target name="dist" depends="compile">

</target>



<target name="clean">
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>



</project>
Binary file added build/Gui.class
Binary file not shown.
Binary file added build/MyCanvas.class
Binary file not shown.
Binary file added build/SQLTempPointsReader.class
Binary file not shown.
Binary file added build/convert.class
Binary file not shown.
Binary file added build/edit.class
Binary file not shown.
Binary file added build/gpsCoord.class
Binary file not shown.
Binary file added build/gpsShow.class
Binary file not shown.
Binary file added build/gpsShowMouseListener.class
Binary file not shown.
Binary file added build/gpsShowWindow.class
Binary file not shown.
Binary file added build/gpspoint.class
Binary file not shown.
Binary file added build/ssocket.class
Binary file not shown.
Binary file added build/traceSQL.class
Binary file not shown.
Binary file added edit.class
Binary file not shown.
Loading

0 comments on commit 65a14b9

Please sign in to comment.