This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
91 additions
and
377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="modernhttpclient" version="1.2.2" targetFramework="MonoAndroid31" /> | ||
<package id="OsmSharp.Core" version="0.0.0.48-beta" targetFramework="MonoAndroid44" /> | ||
<package id="OsmSharp.Core" version="1.3.0-rc1-0119" targetFramework="monoandroid44" /> | ||
<package id="protobuf-net" version="2.0.0.668" targetFramework="MonoAndroid42" /> | ||
<package id="Zlib.Portable" version="1.9.2" targetFramework="MonoAndroid42" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Antlr3.Runtime.PCL" version="3.5.0.3" targetFramework="net40" /> | ||
<package id="NUnit" version="2.6.3" targetFramework="net40" /> | ||
<package id="OsmSharp.Core" version="0.0.0.48-beta" targetFramework="net40" /> | ||
<package id="NUnit" version="3.0.1" targetFramework="net40" /> | ||
<package id="OsmSharp.Core" version="1.3.0-rc1-0119" targetFramework="net40" /> | ||
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" /> | ||
<package id="Zlib.Portable" version="1.9.2" targetFramework="net40" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// OsmSharp - OpenStreetMap (OSM) SDK | ||
// Copyright (C) 2016 Abelshausen Ben | ||
// | ||
// This file is part of OsmSharp. | ||
// | ||
// OsmSharp is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 2 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// OsmSharp is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with OsmSharp. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace OsmSharp.UI.Data.SQLite | ||
{ | ||
/// <summary> | ||
/// A wrapper-class for all platform-specific SQLite connections. | ||
/// </summary> | ||
public abstract class SQLiteConnectionBase : IDisposable | ||
{ | ||
/// <summary> | ||
/// Creates an SQLLite command. | ||
/// </summary> | ||
public abstract List<T> Query<T>(string query, params object[] args) where T : new(); | ||
|
||
/// <summary> | ||
/// Disposes of all resources associated with this connection. | ||
/// </summary> | ||
public abstract void Dispose(); | ||
|
||
/// <summary> | ||
/// Closes this SQLite command. | ||
/// </summary> | ||
public abstract void Close(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Antlr3.Runtime.PCL" version="3.5.0.3" targetFramework="net40" /> | ||
<package id="OsmSharp.Core" version="0.0.0.48-beta" targetFramework="portable-net403+sl50+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10" /> | ||
<package id="OsmSharp.Core" version="1.3.0-rc1-0119" targetFramework="portable40-net403+sl5+win8+wp8" /> | ||
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" /> | ||
<package id="Zlib.Portable" version="1.9.2" targetFramework="net40" /> | ||
</packages> |
78 changes: 0 additions & 78 deletions
78
OsmSharp.WinForms.UI/IO/MemoryMappedFiles/TempMemoryMappedFile.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="OsmSharp.Core" version="0.0.0.48-beta" targetFramework="net403" /> | ||
<package id="OsmSharp.Core" version="1.3.0-rc1-0119" targetFramework="net452" /> | ||
<package id="protobuf-net" version="2.0.0.668" targetFramework="net403" /> | ||
<package id="Zlib.Portable" version="1.9.2" targetFramework="net403" /> | ||
</packages> |
Oops, something went wrong.