home *** CD-ROM | disk | FTP | other *** search
- // ===========================================================================
- // MacOS_Namespaces.h ©2000 Connectix Corporation
- // ===========================================================================
- // Contains:
- //
- // Written by: Linden Siahaan
- //
- // Copyright: ©2000 Connectix Corporation
- // ===========================================================================
-
- /*
-
- $Log: MacOS_Namespaces.h,v $
- Revision 1.1 2000/03/09 02:09:12 lsiahaan
- First Checked In.
-
-
- */
-
-
- #ifndef _H_MacOS_Namespaces
- #define _H_MacOS_Namespaces
- #pragma once
-
- // ---------------------------------------------------------------------------
- // Mac OS Extensions Namespace
-
- #ifndef CTX_Uses_MacOS_Namespace
- #define CTX_Uses_MacOS_Namespace 0 // Default to OFF
- #endif
-
- #if CTX_Uses_MacOS_Namespace
- #define CTX_Begin_Namespace_MacOS namespace MacOS_Extensions {
- #define CTX_End_Namespace_MacOS }
- #define CTX_Using_Namespace_MacOS using namespace MacOS_Extensions;
- #define CTX_MacOS MacOS_Extensions
- #else
- #define CTX_Begin_Namespace_MacOS
- #define CTX_End_Namespace_MacOS
- #define CTX_Using_Namespace_MacOS
- #define CTX_MacOS
- #endif
-
-
- #endif // _H_MacOS_Namespaces
-