Hi,
I want to know how to make a C++ wrapper class.
Ex. Plugin.hpp
if i have coded for Plugin.h and Plugin.cpp
3
Contributors
2
Replies
5 Hours
Discussion Span
1 Year Ago
Last Updated
3
Views
Related Article:Wrapper Class? C++
is a solved C++ discussion thread by danny2000 that has 3 replies, was last updated 10 months ago and has been tagged with the keywords: wrapper, class, c++.
A wrapper class is any class which "wraps" or "encapsulates" the functionality of another class or component. These are useful by providing a level of abstraction from the implementation of the underlying class or component; for example, wrapper classes that wrap COM components can manage the process of invoking the COM component without bothering the calling code with it. They can also simplify the use of the underlying object by reducing the number interface points involved; frequently, this makes for more secure use of underlying components.