diff options
-rw-r--r-- | include/BLua.h | 21 | ||||
-rw-r--r-- | include/BString.h | 21 | ||||
-rw-r--r-- | include/Buffer.h | 21 | ||||
-rw-r--r-- | include/Exceptions.h | 21 | ||||
-rw-r--r-- | include/Handle.h | 21 | ||||
-rw-r--r-- | include/Input.h | 21 | ||||
-rw-r--r-- | include/LuaHandle.h | 21 | ||||
-rw-r--r-- | include/Main.h | 21 | ||||
-rw-r--r-- | include/Output.h | 21 | ||||
-rw-r--r-- | include/generic.h | 21 | ||||
-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 |
20 files changed, 418 insertions, 17 deletions
diff --git a/include/BLua.h b/include/BLua.h index d9b809e..3d8afe3 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -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.h,v 1.5 2003-12-04 04:09:01 pixel Exp $ */ + #ifndef __BLUA_H__
#define __BLUA_H__
diff --git a/include/BString.h b/include/BString.h index 82fe1b5..9a3224c 100644 --- a/include/BString.h +++ b/include/BString.h @@ -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: BString.h,v 1.10 2003-12-04 04:09:01 pixel Exp $ */ + #ifndef __STRING_H__ #define __STRING_H__ diff --git a/include/Buffer.h b/include/Buffer.h index fb2cab4..6ca41cc 100644 --- a/include/Buffer.h +++ b/include/Buffer.h @@ -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.h,v 1.16 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __BUFFER_H__ #define __BUFFER_H__ diff --git a/include/Exceptions.h b/include/Exceptions.h index d37cd5a..8dd473f 100644 --- a/include/Exceptions.h +++ b/include/Exceptions.h @@ -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.h,v 1.33 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __EXCEPTIONS_H__ #define __EXCEPTIONS_H__ diff --git a/include/Handle.h b/include/Handle.h index 79799da..ebe488c 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -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.h,v 1.31 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __HANDLE_H__ #define __HANDLE_H__ diff --git a/include/Input.h b/include/Input.h index 6b53012..2a277d4 100644 --- a/include/Input.h +++ b/include/Input.h @@ -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.h,v 1.19 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __INPUT_H__ #define __INPUT_H__ diff --git a/include/LuaHandle.h b/include/LuaHandle.h index f8fc1ab..8d2a92c 100644 --- a/include/LuaHandle.h +++ b/include/LuaHandle.h @@ -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.h,v 1.3 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __LUAHANDLE_H__
#define __LUAHANDLE_H__
diff --git a/include/Main.h b/include/Main.h index 577150e..da9be5f 100644 --- a/include/Main.h +++ b/include/Main.h @@ -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.h,v 1.12 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __MAIN_H__ #define __MAIN_H__ diff --git a/include/Output.h b/include/Output.h index 0967182..b042da8 100644 --- a/include/Output.h +++ b/include/Output.h @@ -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.h,v 1.12 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __OUTPUT_H__ #define __OUTPUT_H__ diff --git a/include/generic.h b/include/generic.h index 1fe18d0..6e33ea6 100644 --- a/include/generic.h +++ b/include/generic.h @@ -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: generic.h,v 1.25 2003-12-04 04:09:02 pixel Exp $ */ + #ifndef __GENERIC_H__ #define __GENERIC_H__ 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 |