diff options
author | pixel <pixel> | 2003-12-04 04:09:01 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-12-04 04:09:01 +0000 |
commit | 502447d949ac09089a08ee1a2dad251fea4ae26a (patch) | |
tree | c01bee3a4c699775869a5ce1fb675d3328d4e9b4 /lib | |
parent | dffe4cab48065f2af32ff90b52e82ba4c44009f4 (diff) |
Added some header tags
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BLua.cc | 21 | ||||
-rw-r--r-- | lib/Buffer.cc | 21 | ||||
-rw-r--r-- | lib/Exceptions.cc | 21 | ||||
-rw-r--r-- | lib/Handle.cc | 21 | ||||
-rw-r--r-- | lib/Input.cc | 21 | ||||
-rw-r--r-- | lib/LuaHandle.cc | 21 | ||||
-rw-r--r-- | lib/Main.cc | 21 | ||||
-rw-r--r-- | lib/Output.cc | 21 | ||||
-rw-r--r-- | lib/String.cc | 21 | ||||
-rw-r--r-- | lib/generic.cc | 36 |
10 files changed, 208 insertions, 17 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 6c40cc3..7a4f1d9 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: BLua.cc,v 1.7 2003-12-04 04:09:02 pixel Exp $ */ + #include <lualib.h>
#include "BLua.h"
diff --git a/lib/Buffer.cc b/lib/Buffer.cc index cd05467..061064c 100644 --- a/lib/Buffer.cc +++ b/lib/Buffer.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Buffer.cc,v 1.20 2003-12-04 04:09:02 pixel Exp $ */ + #include <string.h> #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc index 85b4429..0d09870 100644 --- a/lib/Exceptions.cc +++ b/lib/Exceptions.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Exceptions.cc,v 1.30 2003-12-04 04:09:02 pixel Exp $ */ + #include <malloc.h> #include <string.h> #include <errno.h> diff --git a/lib/Handle.cc b/lib/Handle.cc index 7068843..68724aa 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Handle.cc,v 1.63 2003-12-04 04:09:02 pixel Exp $ */ + #include <stdio.h> #include <string.h> #include <errno.h> diff --git a/lib/Input.cc b/lib/Input.cc index a6eb09f..b4dfb85 100644 --- a/lib/Input.cc +++ b/lib/Input.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Input.cc,v 1.37 2003-12-04 04:09:02 pixel Exp $ */ + #include <stdio.h> #include <string.h> #include <errno.h> diff --git a/lib/LuaHandle.cc b/lib/LuaHandle.cc index 15c3ee3..c332b0a 100644 --- a/lib/LuaHandle.cc +++ b/lib/LuaHandle.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: LuaHandle.cc,v 1.5 2003-12-04 04:09:02 pixel Exp $ */ + #include "LuaHandle.h"
LuaInput::LuaInput(Input * h) : LuaHandle(h) { }
diff --git a/lib/Main.cc b/lib/Main.cc index 4007abc..e7dd5d2 100644 --- a/lib/Main.cc +++ b/lib/Main.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Main.cc,v 1.9 2003-12-04 04:09:02 pixel Exp $ */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/lib/Output.cc b/lib/Output.cc index 7d619b6..e8b7680 100644 --- a/lib/Output.cc +++ b/lib/Output.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: Output.cc,v 1.19 2003-12-04 04:09:02 pixel Exp $ */ + #include <stdio.h> #include <string.h> #include <errno.h> diff --git a/lib/String.cc b/lib/String.cc index 04fca01..ff6a45f 100644 --- a/lib/String.cc +++ b/lib/String.cc @@ -1,3 +1,24 @@ +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* $Id: String.cc,v 1.33 2003-12-04 04:09:02 pixel Exp $ */ + #include <stdio.h> #include <string.h> #include <stdarg.h> diff --git a/lib/generic.cc b/lib/generic.cc index 7dafb6a..fb55cc4 100644 --- a/lib/generic.cc +++ b/lib/generic.cc @@ -1,22 +1,24 @@ -/* - * PSX-Tools Bundle Pack - * Copyright (C) 2002 Nicolas "Pixel" Noble - * - * This program 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. - * - * This program 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 this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +/* + * Baltisot + * Copyright (C) 1999-2003 Nicolas "Pixel" Noble + * + * This program 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. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +/* $Id: generic.cc,v 1.8 2003-12-04 04:09:02 pixel Exp $ */ + #include <stdio.h> #include <stdarg.h> #ifdef HAVE_CONFIG_H |