Reputation: 14011
I have created a class library whcih has simple Dispaly().
I need to use that display function in some other Vc++ project how can i do this ??
Plz help me Thanks in advance
Upvotes: 1
Views: 879
Reputation: 3744
Build it as either a static or dynamic library and then add this library to the build properties of the other project. You will also need to point the new project to the appropriate class header files.
Upvotes: 1