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 **)