From 731a7860f36bb648dec5287a2ce7e50f16b16b44 Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Sun, 6 Jun 2004 19:43:32 +0000 Subject: [PATCH] Initial commit --- X2App.pas | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 X2App.pas diff --git a/X2App.pas b/X2App.pas new file mode 100644 index 0000000..6379895 --- /dev/null +++ b/X2App.pas @@ -0,0 +1,46 @@ +{ + :: X2App provides a singleton App object to access properties associated + :: to the application, such as the version number or executable path. + :: It is part of the X2Utils suite. + :: + :: Subversion repository available at: + :: $URL$ + :: + :: Last changed: $Date$ + :: Revision: $Rev$ + :: Author: $$LastChangedBy$ + + :$ + :$ + :$ X2Utils is released under the zlib/libpng OSI-approved license. + :$ For more information: http://www.opensource.org/ + :$ /n/n + :$ /n/n + :$ Copyright (c) 2003 X2Software + :$ /n/n + :$ This software is provided 'as-is', without any express or implied warranty. + :$ In no event will the authors be held liable for any damages arising from + :$ the use of this software. + :$ /n/n + :$ Permission is granted to anyone to use this software for any purpose, + :$ including commercial applications, and to alter it and redistribute it + :$ freely, subject to the following restrictions: + :$ /n/n + :$ 1. The origin of this software must not be misrepresented; you must not + :$ claim that you wrote the original software. If you use this software in a + :$ product, an acknowledgment in the product documentation would be + :$ appreciated but is not required. + :$ /n/n + :$ 2. Altered source versions must be plainly marked as such, and must not be + :$ misrepresented as being the original software. + :$ /n/n + :$ 3. This notice may not be removed or altered from any source distribution. +} +unit X2App; + +interface + +implementation + +end. + \ No newline at end of file