00001 /* 00002 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ 00003 Hyperion Pattern. 00004 Hyperion Pattern is a part of the Hyperion Project. 00005 ---------------------------------------------------------- 00006 Copyright (c) 2001 Pierre Rebours. 00007 00008 This library is free software; you can redistribute it and/or 00009 modify it under the terms of the GNU Lesser General Public 00010 License as published by the Free Software Foundation; either 00011 version 2.1 of the License, or (at your option) any later version. 00012 00013 This library is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 00017 See hyp.license.txt file for more information about the license. 00018 00019 Web: http://lagrandeporte.multimania.com/hyperion 00020 Email: amtycho@yahoo.fr 00021 ---------------------------------------------------------- 00022 CVS 00023 $Log$ 00024 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ 00025 */ 00026 00027 #if !defined(_hyp_ker_global_h_) 00028 #define _hyp_ker_global_h_ 00029 00030 00031 #ifndef hyp_KERNEL_CORE_INSIDE 00032 #error Inclusion not allowed (include hyp.kernel.core.h instead) 00033 #endif 00034 00035 00036 00037 class hyp_ker_DLL CGlobal 00038 { 00039 static int m_Count; 00040 public: 00041 CGlobal(); 00042 ~CGlobal(); 00043 }; 00044 00045 00046 extern hyp_ker_DLL std::fstream& cerr; 00047 extern hyp_ker_DLL std::fstream& clog; 00048 00049 00050 namespace { 00051 CGlobal __globalinit__; 00052 } 00053 00054 00055 hyp_ker_DLL std::string GetLastSysError(void); 00056 00057 hyp_ker_DLL std::string GetLibraryVersion(void); 00058 00059 #endif
|
|