Skip to content

Commit d6dc79a

Browse files
committed
Copyright and license info.
1 parent abde126 commit d6dc79a

10 files changed

+36
-0
lines changed

Diff for: LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
"MIT license"
3+
=============
4+
5+
Copyright (c) 2010 Mauricio Fernández <[email protected]>
6+
7+
Permission is hereby granted, free of charge, to any person
8+
obtaining a copy of this software and associated documentation
9+
files (the "Software"), to deal in the Software without
10+
restriction, including without limitation the rights to use,
11+
copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the
13+
Software is furnished to do so, subject to the following
14+
conditions:
15+
16+
The above copyright notice and this permission notice shall be
17+
included in all copies or substantial portions of the Software.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
21+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26+
OTHER DEALINGS IN THE SOFTWARE.
27+

Diff for: extSet.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
open ExtArray
23

34
module type S =

Diff for: extSet.mli

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
(** Sets with extra functionality *)
23

34
module type S =

Diff for: mq_pg_persistence.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
open Printf
23
open Mq_types
34
open Lwt

Diff for: mq_server.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
open Printf
23
open Lwt
34
open ExtString

Diff for: mq_stomp.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
open Mq_types
23
open Printf
34
open Lwt

Diff for: mq_types.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12

23
type destination = Queue of string | Topic of string | Control of string
34

Diff for: ocamlmq.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
open Printf
23
open Lwt
34

Diff for: pGOCaml_lwt.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12
include PGOCaml_generic.Make(struct include Lwt include Lwt_chan end)
23

34
let buf = Buffer.create 64000

Diff for: ternary.ml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(* Copyright (c) 2010 Mauricio Fernández <[email protected]> *)
12

23
type 'a t =
34
E (* empty *)

0 commit comments

Comments
 (0)