From 5e8199fdf344edd92643509d08cf552eb367ca1e Mon Sep 17 00:00:00 2001 From: Xant Date: Sat, 12 Sep 2009 00:45:04 +0200 Subject: [PATCH] copyright notice --- src/include/factory.h | 34 ++++++++++++++++++++++++++++------ xcode/CFreej.h | 26 +++++++++++++++++++------- xcode/CFreej.mm | 26 +++++++++++++++++++------- xcode/CIAlphaFade.h | 25 ++++++++++++++++++------- xcode/CIAlphaFade.m | 25 ++++++++++++++++++------- xcode/CKbdController.h | 21 ++++++++++++++++----- xcode/CKbdController.mm | 20 +++++++++++++++----- xcode/CVF0rLayer.h | 25 ++++++++++++++++++------- xcode/CVF0rLayer.mm | 25 ++++++++++++++++++------- xcode/CVF0rLayerController.h | 25 ++++++++++++++++++------- xcode/CVF0rLayerController.mm | 25 ++++++++++++++++++------- xcode/CVF0rLayerView.h | 25 ++++++++++++++++++------- xcode/CVF0rLayerView.mm | 25 ++++++++++++++++++------- xcode/CVFileInputController.h | 26 +++++++++++++++++++------- xcode/CVFileInputController.mm | 25 ++++++++++++++++++------- xcode/CVFileInputView.h | 25 ++++++++++++++++++------- xcode/CVFileInputView.mm | 25 ++++++++++++++++++------- xcode/CVFilterPanel.h | 25 ++++++++++++++++++------- xcode/CVFilterPanel.mm | 25 ++++++++++++++++++------- xcode/CVGenerator.h | 25 ++++++++++++++++++------- xcode/CVGenerator.m | 25 ++++++++++++++++++------- xcode/CVGrabber.h | 21 ++++++++++++++++----- xcode/CVGrabber.mm | 20 +++++++++++++++----- xcode/CVGrabberView.h | 25 ++++++++++++++++++------- xcode/CVGrabberView.mm | 25 ++++++++++++++++++------- xcode/CVInternalLayer.h | 25 ++++++++++++++++++------- xcode/CVInternalLayer.mm | 25 ++++++++++++++++++------- xcode/CVLayer.h | 21 ++++++++++++++++----- xcode/CVLayer.mm | 20 +++++++++++++++----- xcode/CVLayerController.h | 25 ++++++++++++++++++------- xcode/CVLayerController.mm | 25 ++++++++++++++++++------- xcode/CVLayerView.h | 25 ++++++++++++++++++------- xcode/CVLayerView.mm | 25 ++++++++++++++++++------- xcode/CVPreview.h | 25 ++++++++++++++++++------- xcode/CVPreview.mm | 25 ++++++++++++++++++------- xcode/CVScreen.h | 2 +- xcode/CVScreen.mm | 2 +- xcode/CVScreenView.h | 26 +++++++++++++++++++------- xcode/CVScreenView.mm | 25 ++++++++++++++++++------- xcode/CVTextLayer.h | 25 ++++++++++++++++++------- xcode/CVTextLayer.mm | 26 ++++++++++++++++++-------- xcode/CVTexture.h | 26 ++++++++++++++++++-------- xcode/CVTexture.m | 25 ++++++++++++++++++------- xcode/FrameRate.h | 25 ++++++++++++++++++------- xcode/FrameRate.m | 25 ++++++++++++++++++------- xcode/GLString.h | 19 +++++++++++++++++++ xcode/GLString.m | 24 ++++++++++++++++++------ xcode/PreferencesPanel.h | 25 ++++++++++++++++++------- xcode/PreferencesPanel.mm | 25 ++++++++++++++++++------- xcode/QTExporter.h | 26 ++++++++++++++++++-------- xcode/QTExporter.mm | 25 ++++++++++++++++++------- 51 files changed, 884 insertions(+), 327 deletions(-) diff --git a/src/include/factory.h b/src/include/factory.h index 6681d96a..3cf84f25 100644 --- a/src/include/factory.h +++ b/src/include/factory.h @@ -1,3 +1,22 @@ +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + #ifndef __FACTORY_H__ #define __FACTORY_H__ @@ -42,16 +61,19 @@ * This will allow javascripts to call "var geo_layer = new GeometryLayer()" * obtaining an instance of a different subclass depending on the platform and setup. * - * If the purpose is to reuse instances (implementing singletons) the get_instance() method can be used insted. + * If the purpose is to reuse instances (implementing, for instance, singletons) the get_instance() method + * can be used instead of new_instance(). + * for example: * > MyScreen *screenInstance = Factory::get_instance("Screen"); + * * will return always the same instance as long as only 'get_instance()' is called. - * mixing calls new_instance() and get_instance() can lead to unexpected behaviours. - * get_instance() will take care of creating a new instance when called the first time + * It will take care of creating a new instance when called the first time so + * mixing calls to new_instance() and get_instance() can lead to unexpected behaviours. * */ -#include // for std::map -#include // for std::string -#include +#include // std::map +#include // std::string +#include // func() and error() #define FACTORY_ID_MAXLEN 64 diff --git a/xcode/CFreej.h b/xcode/CFreej.h index c68c961f..9f748759 100644 --- a/xcode/CFreej.h +++ b/xcode/CFreej.h @@ -1,10 +1,22 @@ -// -// Freej.h -// freej -// -// Created by xant on 2/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + #ifndef __CFREEJ_H__ #define __CFREEJ_H__ diff --git a/xcode/CFreej.mm b/xcode/CFreej.mm index cafcea25..73abeeb7 100644 --- a/xcode/CFreej.mm +++ b/xcode/CFreej.mm @@ -1,10 +1,22 @@ -// -// Freej.m -// freej -// -// Created by xant on 2/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + #include #import #import diff --git a/xcode/CIAlphaFade.h b/xcode/CIAlphaFade.h index ef5f4679..e1386f71 100644 --- a/xcode/CIAlphaFade.h +++ b/xcode/CIAlphaFade.h @@ -1,10 +1,21 @@ -// -// CIAlphaFade.h -// freej -// -// Created by xant on 2/24/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #include diff --git a/xcode/CIAlphaFade.m b/xcode/CIAlphaFade.m index 1cc4a006..f60a3967 100644 --- a/xcode/CIAlphaFade.m +++ b/xcode/CIAlphaFade.m @@ -1,10 +1,21 @@ -// -// CIAlphaFade.m -// freej -// -// Created by xant on 2/24/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CIAlphaFade.h" diff --git a/xcode/CKbdController.h b/xcode/CKbdController.h index aebdf047..99c4c02e 100644 --- a/xcode/CKbdController.h +++ b/xcode/CKbdController.h @@ -1,11 +1,22 @@ -/* - * CKbdController.h - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 8/28/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ + #include #include #include diff --git a/xcode/CKbdController.mm b/xcode/CKbdController.mm index 26393625..25682a01 100644 --- a/xcode/CKbdController.mm +++ b/xcode/CKbdController.mm @@ -1,9 +1,19 @@ -/* - * CKbdController.cpp - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 8/28/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ diff --git a/xcode/CVF0rLayer.h b/xcode/CVF0rLayer.h index cbf73f92..1b49843f 100644 --- a/xcode/CVF0rLayer.h +++ b/xcode/CVF0rLayer.h @@ -1,10 +1,21 @@ -// -// CVF0rLayer.h -// freej -// -// Created by xant on 3/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVF0RLAYER_H__ #define __CVF0RLAYER_H__ diff --git a/xcode/CVF0rLayer.mm b/xcode/CVF0rLayer.mm index e3749418..96a48a60 100644 --- a/xcode/CVF0rLayer.mm +++ b/xcode/CVF0rLayer.mm @@ -1,10 +1,21 @@ -// -// CVF0rLayer.m -// freej -// -// Created by xant on 3/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #include "CVF0rLayer.h" #import "CVF0rLayerView.h" diff --git a/xcode/CVF0rLayerController.h b/xcode/CVF0rLayerController.h index af48045b..5e0c5ffe 100644 --- a/xcode/CVF0rLayerController.h +++ b/xcode/CVF0rLayerController.h @@ -1,10 +1,21 @@ -// -// CVF0rLayerController.h -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVF0RLAYERCONTROLLER_H__ #define __CVF0RLAYERCONTROLLER_H__ diff --git a/xcode/CVF0rLayerController.mm b/xcode/CVF0rLayerController.mm index 32ada9ff..9187e204 100644 --- a/xcode/CVF0rLayerController.mm +++ b/xcode/CVF0rLayerController.mm @@ -1,10 +1,21 @@ -// -// CVF0rLayerController.mn -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVF0rLayerController.h" diff --git a/xcode/CVF0rLayerView.h b/xcode/CVF0rLayerView.h index 39b77a38..920c76d3 100644 --- a/xcode/CVF0rLayerView.h +++ b/xcode/CVF0rLayerView.h @@ -1,10 +1,21 @@ -// -// CVF0rLayerView.h -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVF0RLAYERVIEW_H__ #define __CVF0RLAYERVIEW_H__ diff --git a/xcode/CVF0rLayerView.mm b/xcode/CVF0rLayerView.mm index e8d9678a..6a14ffbd 100644 --- a/xcode/CVF0rLayerView.mm +++ b/xcode/CVF0rLayerView.mm @@ -1,10 +1,21 @@ -// -// CVF0rLayerView.mm -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #include "CVF0rLayer.h" #import "CVF0rLayerView.h" diff --git a/xcode/CVFileInputController.h b/xcode/CVFileInputController.h index 99589f17..3cced612 100644 --- a/xcode/CVFileInputController.h +++ b/xcode/CVFileInputController.h @@ -1,10 +1,22 @@ -// -// CVFileInput.h -// freej -// -// Created by xant on 2/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + #ifndef __CV_FILEINPUT_H__ #define __CV_FILEINPUT_H__ #include "CVLayer.h" diff --git a/xcode/CVFileInputController.mm b/xcode/CVFileInputController.mm index d3d262fb..41e49f4d 100644 --- a/xcode/CVFileInputController.mm +++ b/xcode/CVFileInputController.mm @@ -1,10 +1,21 @@ -// -// CVFileInput.mm -// freej -// -// Created by xant on 2/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVFileInputController.h" #import "CIAlphaFade.h" diff --git a/xcode/CVFileInputView.h b/xcode/CVFileInputView.h index c722273e..3a330bb7 100644 --- a/xcode/CVFileInputView.h +++ b/xcode/CVFileInputView.h @@ -1,10 +1,21 @@ -// -// CVFileInputView.h -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVFILEINPUTVIEW_H__ #define __CVFILEINPUTVIEW_H__ diff --git a/xcode/CVFileInputView.mm b/xcode/CVFileInputView.mm index 5fc6a599..32d54be9 100644 --- a/xcode/CVFileInputView.mm +++ b/xcode/CVFileInputView.mm @@ -1,10 +1,21 @@ -// -// CVFileInputView.mm -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #include "CVLayerController.h" #import "CVFileInputView.h" diff --git a/xcode/CVFilterPanel.h b/xcode/CVFilterPanel.h index a51b3ed9..a09ced7e 100644 --- a/xcode/CVFilterPanel.h +++ b/xcode/CVFilterPanel.h @@ -1,10 +1,21 @@ -// -// CVFilterPanel.h -// freej -// -// Created by xant on 2/26/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CV_FILTERPANEL_H__ #define __CV_FILTERPANEL_H__ diff --git a/xcode/CVFilterPanel.mm b/xcode/CVFilterPanel.mm index 2af6c98a..8cf1aeae 100644 --- a/xcode/CVFilterPanel.mm +++ b/xcode/CVFilterPanel.mm @@ -1,10 +1,21 @@ -// -// CVFilterPanel.m -// freej -// -// Created by xant on 2/26/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVFilterPanel.h" diff --git a/xcode/CVGenerator.h b/xcode/CVGenerator.h index 8715a226..849311ca 100644 --- a/xcode/CVGenerator.h +++ b/xcode/CVGenerator.h @@ -1,10 +1,21 @@ -// -// CVGenerator.h -// freej -// -// Created by xant on 3/7/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/CVGenerator.m b/xcode/CVGenerator.m index 2288131a..e79d036f 100644 --- a/xcode/CVGenerator.m +++ b/xcode/CVGenerator.m @@ -1,10 +1,21 @@ -// -// CVGenerator.m -// freej -// -// Created by xant on 3/7/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ // XXX - WIP diff --git a/xcode/CVGrabber.h b/xcode/CVGrabber.h index 8c5d261e..71c0f1dc 100644 --- a/xcode/CVGrabber.h +++ b/xcode/CVGrabber.h @@ -1,11 +1,22 @@ -/* - * CVideo_layer.h - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 2/9/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ + #ifndef __CVGRABBERCONTROLLER_H__ #define __CVGRABBERCONTROLLER_H__ diff --git a/xcode/CVGrabber.mm b/xcode/CVGrabber.mm index 5399fab0..0b52a7b1 100644 --- a/xcode/CVGrabber.mm +++ b/xcode/CVGrabber.mm @@ -1,9 +1,19 @@ -/* - * CVideo_layer.cpp - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 2/9/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ diff --git a/xcode/CVGrabberView.h b/xcode/CVGrabberView.h index 166aa8ff..c488568b 100644 --- a/xcode/CVGrabberView.h +++ b/xcode/CVGrabberView.h @@ -1,10 +1,21 @@ -// -// CVGrabberView.h -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVGRABBERVIEW_H__ #define __CVGRABBERVIEW_H__ diff --git a/xcode/CVGrabberView.mm b/xcode/CVGrabberView.mm index 9752dc3e..8814d39c 100644 --- a/xcode/CVGrabberView.mm +++ b/xcode/CVGrabberView.mm @@ -1,10 +1,21 @@ -// -// CVGrabberView.m -// freej -// -// Created by xant on 9/2/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVGrabberView.h" diff --git a/xcode/CVInternalLayer.h b/xcode/CVInternalLayer.h index ff0321fc..6e6b9e4e 100644 --- a/xcode/CVInternalLayer.h +++ b/xcode/CVInternalLayer.h @@ -1,10 +1,21 @@ -// -// CVInternalLayer.h -// freej -// -// Created by xant on 6/14/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import diff --git a/xcode/CVInternalLayer.mm b/xcode/CVInternalLayer.mm index 0ed6e615..35540e61 100644 --- a/xcode/CVInternalLayer.mm +++ b/xcode/CVInternalLayer.mm @@ -1,10 +1,21 @@ -// -// CVInternalLayer.m -// freej -// -// Created by xant on 6/14/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVInternalLayer.h" diff --git a/xcode/CVLayer.h b/xcode/CVLayer.h index b828c65d..ce1b1986 100644 --- a/xcode/CVLayer.h +++ b/xcode/CVLayer.h @@ -1,11 +1,22 @@ -/* - * CVLayer.h - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 2/23/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ + #ifndef __CVLAYER_H__ #define __CVLAYER_H__ diff --git a/xcode/CVLayer.mm b/xcode/CVLayer.mm index 6ae7f9fa..fc00a188 100644 --- a/xcode/CVLayer.mm +++ b/xcode/CVLayer.mm @@ -1,9 +1,19 @@ -/* - * CVLayer.cpp - * freej +/* FreeJ + * (c) Copyright 2009 Xant * - * Created by xant on 2/23/09. - * Copyright 2009 dyne.org. All rights reserved. + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ diff --git a/xcode/CVLayerController.h b/xcode/CVLayerController.h index 609951f5..6373cc2b 100644 --- a/xcode/CVLayerController.h +++ b/xcode/CVLayerController.h @@ -1,10 +1,21 @@ -// -// CVLayerController.h -// freej -// -// Created by xant on 9/1/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVLAYERCONTROLLER_H__ #define __CVLAYERCONTROLLER_H__ diff --git a/xcode/CVLayerController.mm b/xcode/CVLayerController.mm index 5d6978af..c5cfdb70 100644 --- a/xcode/CVLayerController.mm +++ b/xcode/CVLayerController.mm @@ -1,10 +1,21 @@ -// -// CVLayerController.m -// freej -// -// Created by xant on 9/1/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVLayerController.h" diff --git a/xcode/CVLayerView.h b/xcode/CVLayerView.h index b6ab51f9..1ca01e4b 100644 --- a/xcode/CVLayerView.h +++ b/xcode/CVLayerView.h @@ -1,10 +1,21 @@ -// -// CVLayerView.h -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #ifndef __CVLAYERVIEW_H__ #define __CVLAYERVIEW_H__ diff --git a/xcode/CVLayerView.mm b/xcode/CVLayerView.mm index 4b9603e8..c6cf9311 100644 --- a/xcode/CVLayerView.mm +++ b/xcode/CVLayerView.mm @@ -1,10 +1,21 @@ -// -// CVLayerView.mm -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVLayerView.h" #import "CIAlphaFade.h" diff --git a/xcode/CVPreview.h b/xcode/CVPreview.h index 8a5df263..8287ad6b 100644 --- a/xcode/CVPreview.h +++ b/xcode/CVPreview.h @@ -1,10 +1,21 @@ -// -// CVPreview.h -// freej -// -// Created by xant on 5/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/CVPreview.mm b/xcode/CVPreview.mm index 2a14c56a..f85300e5 100644 --- a/xcode/CVPreview.mm +++ b/xcode/CVPreview.mm @@ -1,10 +1,21 @@ -// -// CVPreview.m -// freej -// -// Created by xant on 5/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVPreview.h" #include diff --git a/xcode/CVScreen.h b/xcode/CVScreen.h index e2383f28..3bf84612 100644 --- a/xcode/CVScreen.h +++ b/xcode/CVScreen.h @@ -1,5 +1,5 @@ /* FreeJ - * (c) Copyright 2009 Denis Roio aka jaromil + * (c) Copyright 2009 Xant * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published diff --git a/xcode/CVScreen.mm b/xcode/CVScreen.mm index 2a970b91..d7b5a50b 100644 --- a/xcode/CVScreen.mm +++ b/xcode/CVScreen.mm @@ -1,5 +1,5 @@ /* FreeJ - * (c) Copyright 2009 Denis Roio aka jaromil + * (c) Copyright 2009 Xant * * This source code is free software; you can redistribute it and/or * modify it under the terms of the GNU Public License as published diff --git a/xcode/CVScreenView.h b/xcode/CVScreenView.h index 91525868..485578e9 100644 --- a/xcode/CVScreenView.h +++ b/xcode/CVScreenView.h @@ -1,10 +1,22 @@ -// -// CVScreenView.h -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 dyne..org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + #ifndef __CV_SCREENVIEW_H__ #define __CV_SCREENVIEW_H__ diff --git a/xcode/CVScreenView.mm b/xcode/CVScreenView.mm index eb9ce403..c1b833a7 100644 --- a/xcode/CVScreenView.mm +++ b/xcode/CVScreenView.mm @@ -1,10 +1,21 @@ -// -// CVScreenView.mm -// freej -// -// Created by xant on 8/30/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import diff --git a/xcode/CVTextLayer.h b/xcode/CVTextLayer.h index 5c297abc..e5bd11ce 100644 --- a/xcode/CVTextLayer.h +++ b/xcode/CVTextLayer.h @@ -1,10 +1,21 @@ -// -// CVTextLayer.h -// freej -// -// Created by xant on 6/11/09. -// Copyright 2009 __MyCompanyName__. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/CVTextLayer.mm b/xcode/CVTextLayer.mm index 65b1a478..a61d47f6 100644 --- a/xcode/CVTextLayer.mm +++ b/xcode/CVTextLayer.mm @@ -1,11 +1,21 @@ -// -// CVTextLayer.mm -// freej -// -// Created by xant on 6/11/09. -// -// Copyright 2009 dyne.org. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVTextLayer.h" diff --git a/xcode/CVTexture.h b/xcode/CVTexture.h index 0d1d1796..5ac589cb 100644 --- a/xcode/CVTexture.h +++ b/xcode/CVTexture.h @@ -1,11 +1,21 @@ -// -// CVTexture.h -// freej -// -// Created by xant on 5/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// - +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/CVTexture.m b/xcode/CVTexture.m index 9d02eaf6..51cb905f 100644 --- a/xcode/CVTexture.m +++ b/xcode/CVTexture.m @@ -1,10 +1,21 @@ -// -// CVTexture.m -// freej -// -// Created by xant on 5/16/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "CVTexture.h" diff --git a/xcode/FrameRate.h b/xcode/FrameRate.h index 12b00072..c5acb6b2 100644 --- a/xcode/FrameRate.h +++ b/xcode/FrameRate.h @@ -1,10 +1,21 @@ -// -// FrameRate.h -// freej -// -// Created by xant on 3/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import diff --git a/xcode/FrameRate.m b/xcode/FrameRate.m index 770a1faa..08db253b 100644 --- a/xcode/FrameRate.m +++ b/xcode/FrameRate.m @@ -1,10 +1,21 @@ -// -// FrameRate.m -// freej -// -// Created by xant on 3/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "FrameRate.h" diff --git a/xcode/GLString.h b/xcode/GLString.h index b21bc627..618ba3e3 100755 --- a/xcode/GLString.h +++ b/xcode/GLString.h @@ -1,3 +1,22 @@ +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + // // GLString.h // diff --git a/xcode/GLString.m b/xcode/GLString.m index b2a2598e..1a961c99 100755 --- a/xcode/GLString.m +++ b/xcode/GLString.m @@ -1,9 +1,21 @@ -// -// GLString.m -// freej -// -// Copyright 2009 dyne.org. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ // Abstract: Uses Quartz to draw a string into an OpenGL texture. // Imported from apple "CocoaGL" example and extended // to fit freej integration. diff --git a/xcode/PreferencesPanel.h b/xcode/PreferencesPanel.h index 093baa58..cd02e730 100644 --- a/xcode/PreferencesPanel.h +++ b/xcode/PreferencesPanel.h @@ -1,10 +1,21 @@ -// -// PreferencesPanel.h -// freej -// -// Created by xant on 8/20/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/PreferencesPanel.mm b/xcode/PreferencesPanel.mm index 85403af1..0c9c8775 100644 --- a/xcode/PreferencesPanel.mm +++ b/xcode/PreferencesPanel.mm @@ -1,10 +1,21 @@ -// -// PreferencesPanel.m -// freej -// -// Created by xant on 8/20/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "PreferencesPanel.h" #import "CVScreenView.h" diff --git a/xcode/QTExporter.h b/xcode/QTExporter.h index 9e1282d9..75e1ddcb 100644 --- a/xcode/QTExporter.h +++ b/xcode/QTExporter.h @@ -1,11 +1,21 @@ - -// -// QTExporter.h -// freej -// -// Created by xant on 8/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import #import diff --git a/xcode/QTExporter.mm b/xcode/QTExporter.mm index cc88c293..cb89e6a9 100644 --- a/xcode/QTExporter.mm +++ b/xcode/QTExporter.mm @@ -1,10 +1,21 @@ -// -// QTExporter.m -// freej -// -// Created by xant on 8/8/09. -// Copyright 2009 dyne.org. All rights reserved. -// +/* FreeJ + * (c) Copyright 2009 Xant + * + * This source code is free software; you can redistribute it and/or + * modify it under the terms of the GNU Public License as published + * by the Free Software Foundation; either version 3 of the License, + * or (at your option) any later version. + * + * This source code 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. + * Please refer to the GNU Public License for more details. + * + * You should have received a copy of the GNU Public License along with + * this source code; if not, write to: + * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ #import "QTExporter.h" #include