From 34c28c694bd11f4b8e7a712da1d4cde83954b4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 26 Apr 2008 20:14:09 +0000 Subject: [PATCH] Header guard and copyrights. Pets Pe's HeaderGuard and HeaderHeader extensions :) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25192 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/login/DesktopWindow.cpp | 6 ++++++ src/apps/login/DesktopWindow.h | 4 ++++ src/apps/login/LoginApp.cpp | 6 ++++++ src/apps/login/LoginApp.h | 4 ++++ src/apps/login/LoginView.cpp | 7 +++++++ src/apps/login/LoginView.h | 9 +++++++++ src/apps/login/LoginWindow.cpp | 6 ++++++ src/apps/login/LoginWindow.h | 4 ++++ src/apps/login/main.cpp | 6 ++++++ 9 files changed, 52 insertions(+) diff --git a/src/apps/login/DesktopWindow.cpp b/src/apps/login/DesktopWindow.cpp index c0aa690f1b..512a1bb394 100644 --- a/src/apps/login/DesktopWindow.cpp +++ b/src/apps/login/DesktopWindow.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ + + #include #include diff --git a/src/apps/login/DesktopWindow.h b/src/apps/login/DesktopWindow.h index 1454f7df7a..f83336dc2f 100644 --- a/src/apps/login/DesktopWindow.h +++ b/src/apps/login/DesktopWindow.h @@ -1,3 +1,7 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ #ifndef _DESKTOPWINDOW_H_ #define _DESKTOPWINDOW_H_ diff --git a/src/apps/login/LoginApp.cpp b/src/apps/login/LoginApp.cpp index 285f5c4c03..a7e2d0dc3b 100644 --- a/src/apps/login/LoginApp.cpp +++ b/src/apps/login/LoginApp.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ + + #include #include #include diff --git a/src/apps/login/LoginApp.h b/src/apps/login/LoginApp.h index 4c2a443d0a..cd1718781f 100644 --- a/src/apps/login/LoginApp.h +++ b/src/apps/login/LoginApp.h @@ -1,3 +1,7 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ #ifndef _LOGINAPP_H_ #define _LOGINAPP_H_ diff --git a/src/apps/login/LoginView.cpp b/src/apps/login/LoginView.cpp index 91f40dadd3..8fa61c5a93 100644 --- a/src/apps/login/LoginView.cpp +++ b/src/apps/login/LoginView.cpp @@ -1,6 +1,13 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ #include #include #include +#ifdef __HAIKU__ +#include +#endif #include diff --git a/src/apps/login/LoginView.h b/src/apps/login/LoginView.h index c389cd9dfd..657f038695 100644 --- a/src/apps/login/LoginView.h +++ b/src/apps/login/LoginView.h @@ -1,3 +1,10 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ +#ifndef _LOGINVIEW_H_ +#define _LOGINVIEW_H_ + #include #include #include @@ -36,3 +43,5 @@ private: BStringView* fInfoView; }; + +#endif // _LOGINVIEW_H_ diff --git a/src/apps/login/LoginWindow.cpp b/src/apps/login/LoginWindow.cpp index 1b72a378a4..7ad89be936 100644 --- a/src/apps/login/LoginWindow.cpp +++ b/src/apps/login/LoginWindow.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ + + #include "LoginWindow.h" #include "LoginView.h" diff --git a/src/apps/login/LoginWindow.h b/src/apps/login/LoginWindow.h index b2abfc9eed..43a9f482db 100644 --- a/src/apps/login/LoginWindow.h +++ b/src/apps/login/LoginWindow.h @@ -1,3 +1,7 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ #ifndef _LOGINWINDOW_H_ #define _LOGINWINDOW_H_ diff --git a/src/apps/login/main.cpp b/src/apps/login/main.cpp index 841eb0e968..3f94a495d4 100644 --- a/src/apps/login/main.cpp +++ b/src/apps/login/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2008, François Revol, . All rights reserved. + * Distributed under the terms of the MIT License. + */ + + #include "LoginApp.h" int main(int , char **)