44 lines
2.1 KiB
C
44 lines
2.1 KiB
C
/*************************************************************************
|
|
* *
|
|
* ODER's Utilities Library. Copyright (C) 2008-2024 Oleh Derevenko. *
|
|
* All rights reserved. e-mail: odar@eleks.com (change all "a" to "e") *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of EITHER: *
|
|
* (1) The GNU Lesser General Public License as published by the Free *
|
|
* Software Foundation; either version 3 of the License, or (at *
|
|
* your option) any later version. The text of the GNU Lesser *
|
|
* General Public License is included with this library in the *
|
|
* file LICENSE-LESSER.TXT. Since LGPL is the extension of GPL *
|
|
* the text of GNU General Public License is also provided for *
|
|
* your information in file LICENSE.TXT. *
|
|
* (2) The BSD-style license that is included with this library in *
|
|
* the file LICENSE-BSD.TXT. *
|
|
* (3) The zlib/libpng license that is included with this library in *
|
|
* the file LICENSE-ZLIB.TXT *
|
|
* *
|
|
* This library is distributed WITHOUT ANY WARRANTY, including implied *
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* See the files LICENSE.TXT and LICENSE-LESSER.TXT or LICENSE-BSD.TXT *
|
|
* or LICENSE-ZLIB.TXT for more details. *
|
|
* *
|
|
*************************************************************************/
|
|
|
|
#ifndef __OU_NAMESPACE_H_INCLUDED
|
|
#define __OU_NAMESPACE_H_INCLUDED
|
|
|
|
|
|
#ifndef _OU_NAMESPACE
|
|
|
|
#define _OU_NAMESPACE ou
|
|
|
|
|
|
#endif // #ifndef _OU_NAMESPACE
|
|
|
|
|
|
#define BEGIN_NAMESPACE_OU() namespace _OU_NAMESPACE {
|
|
#define END_NAMESPACE_OU() } /* namespace _OU_NAMESPACE */
|
|
|
|
|
|
#endif // #ifndef __OU_NAMESPACE_H_INCLUDED
|