Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is a wrapper function ?

Status
Not open for further replies.

sacrpio

Member level 3
Joined
May 24, 2004
Messages
56
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
500
WHAT IS A WRAPPER FUNCTION?? HOW I CAN GET MORE INFORMATION ABOUT WRAPPER FUNCTION (ANY URL).

THANKS
 

Re: WRAPPER FUNCTION

Please repair your keyboard, the capslock key seems to be stuck...

A wrapper function is a pretty broad term, generally means a function which calls another function to do the real work. The wrapper function itself might change the parameters a bit, do some error checking or something trivial like that.

There might be a more specific definition of "wrapper function" in a specific language or environment, but since you don't specify any it's hard to say anything more...
 

Re: WRAPPER FUNCTION

A wrapper function is often used in new programms which are based on older releases. The new program just uses the old function. The new function has the same effect than the old function.

void new_func()
{
bla, bla;
old_func();
bla, bla;
}


ps
On almost every keyboard you can find a key for repairing your keyboard itself. The repair-function is called CAPS-LOCK.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top