Skip to content

Commit c008aca

Browse files
pkaandelf
authored andcommitted
Add copyright headers
1 parent 1f82df3 commit c008aca

File tree

6 files changed

+27
-0
lines changed

6 files changed

+27
-0
lines changed

src/error.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// FileName : error.rs
2+
// Author : ShuYu Wang <[email protected]>
3+
// Created : Wed May 27 01:45:41 2015 by ShuYu Wang
4+
// Copyright : Feather Workshop (c) 2015
5+
// Description : PostGIS helper
6+
// Time-stamp: <2015-06-13 19:21:08 andelf>
7+
18
use std;
29
use std::fmt;
310

src/ewkb.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Copyright (c) ShuYu Wang <[email protected]>, Feather Workshop and Pirmin Kalberer. All rights reserved.
3+
//
4+
15
use types as postgis;
26
use std::io::prelude::*;
37
use std::mem;

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Copyright (c) ShuYu Wang <[email protected]>, Feather Workshop and Pirmin Kalberer. All rights reserved.
3+
//
4+
15
#[macro_use(to_sql_checked)]
26
extern crate postgres;
37
extern crate byteorder;

src/postgis.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Copyright (c) ShuYu Wang <[email protected]>, Feather Workshop and Pirmin Kalberer. All rights reserved.
3+
//
4+
15
use types::{Point, LineString, Polygon};
26
use ewkb::{self, EwkbRead, EwkbWrite, AsEwkbPoint, AsEwkbLineString, AsEwkbPolygon, AsEwkbMultiPoint, AsEwkbMultiLineString, AsEwkbMultiPolygon};
37
use twkb::{self, TwkbGeom};

src/twkb.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Copyright (c) Pirmin Kalberer. All rights reserved.
3+
//
4+
15
use types as postgis;
26
use ewkb;
37
use std::io::prelude::*;

src/types.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Copyright (c) Pirmin Kalberer. All rights reserved.
3+
//
4+
15
pub trait Point {
26
fn x(&self) -> f64;
37
fn y(&self) -> f64;

0 commit comments

Comments
 (0)