-Wrapper        

A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | 0-9


Wrapper - A wrapper is an interface that lies around a program or library, e.g. for compability resons, to emulate something or to restrict access.

Example: OGRE is written in C++ and therefore can only be accessed via C++. But there are certain wrappers to enable you to use other programming languages such as Java, C# or Python.

To use C++ libraries with .NET applications an easy way is to wrap the code by C++/CLI. Only the needed functions have to be wrapped. A famous example is Mogre.