commit 86892ef5c441c186d24c2439246fa118b43b9928
parent 32cbe730971e34badaa1b1fc62508c67aeacc7dd
Author: Tomas Hlavaty <tom@logand.com>
Date: Sat, 10 Dec 2011 14:22:26 +0100
licence comments added
Diffstat:
8 files changed, 140 insertions(+), 0 deletions(-)
diff --git a/javasplit.c b/javasplit.c
@@ -1,4 +1,20 @@
/* javasplit -- split output of unoidl2java into individual files */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
#include <unistd.h>
#include <stdlib.h>
diff --git a/parse.y b/parse.y
@@ -1,3 +1,21 @@
+/* uno idl file parser */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
%{
#include "unoidl2.h"
diff --git a/scan.ll b/scan.ll
@@ -1,3 +1,21 @@
+/* uno idl file lexer */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
%{
#include "unoidl2.h"
diff --git a/unoidl2.c b/unoidl2.c
@@ -1,3 +1,20 @@
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include "unoidl2.h"
#include "parse.c.h"
diff --git a/unoidl2.h b/unoidl2.h
@@ -1,3 +1,20 @@
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
struct any;
typedef struct any *Any;
diff --git a/unoidl2ast.c b/unoidl2ast.c
@@ -1,3 +1,21 @@
+/* unoidl2ast -- convert uno idl input to syntax tree */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include "unoidl2.h"
#include "parse.c.h"
diff --git a/unoidl2java.c b/unoidl2java.c
@@ -1,3 +1,21 @@
+/* unoidl2java -- convert uno idl input to java */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include "unoidl2.h"
#include "parse.c.h"
diff --git a/unoidl2xml.c b/unoidl2xml.c
@@ -1,3 +1,21 @@
+/* unoidl2xml -- convert uno idl input to xml */
+/*
+ This file is part of unoidl2.
+
+ unoidl2 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 3 of the License, or
+ (at your option) any later version.
+
+ unoidl2 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 unoidl2. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include "unoidl2.h"
#include "parse.c.h"