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

Commit 65a14b9

Browse files
committed
initial import
0 parents  commit 65a14b9

File tree

230 files changed

+150339
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+150339
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# A simulation of Subversion default ignores, generated by reposurgeon.
2+
*.o
3+
*.lo
4+
*.la
5+
*.al
6+
*.libs
7+
*.so
8+
*.so.[0-9]*
9+
*.a
10+
*.pyc
11+
*.pyo
12+
*.rej
13+
*~
14+
*.#*
15+
.*.swp
16+
.DS_store
17+
# Simulated Subversion default ignores end here

Gui.class

1.1 KB
Binary file not shown.

MyCanvas.class

1018 Bytes
Binary file not shown.

build.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<project name="openstreetmap" default="dist" basedir=".">
2+
3+
<property name="src" location="src"/>
4+
<property name="build" location="build"/>
5+
<property name="dist" location="dist"/>
6+
7+
8+
<target name="init">
9+
<tstamp/>
10+
<mkdir dir="${build}"/>
11+
</target>
12+
13+
14+
<target name="compile" depends="init">
15+
<javac srcdir="${src}" debug="true" optimize="off" destdir="${build}"/>
16+
</target>
17+
18+
19+
<target name="dist" depends="compile">
20+
21+
</target>
22+
23+
24+
25+
<target name="clean">
26+
<delete dir="${build}"/>
27+
<delete dir="${dist}"/>
28+
</target>
29+
30+
31+
32+
</project>

build/Gui.class

1.44 KB
Binary file not shown.

build/MyCanvas.class

370 Bytes
Binary file not shown.

build/SQLTempPointsReader.class

1.83 KB
Binary file not shown.

build/convert.class

1.51 KB
Binary file not shown.

build/edit.class

563 Bytes
Binary file not shown.

build/gpsCoord.class

1.24 KB
Binary file not shown.

0 commit comments

Comments
 (0)