1'''
2Python mapping for the Foundation framework.
3
4This module does not contain docstrings for the wrapped code, check Apple's
5documentation for details on how to use these functions and classes.
6'''
7
8import objc as _objc
9
10__bundle__ = _objc.initFrameworkWrapper("CGL",
11    frameworkIdentifier="com.apple.opengl",
12    frameworkPath=_objc.pathForFramework(
13        "/System/Library/Frameworks/OpenGL.framework"),
14    globals=globals())
15