Cute
Cute

Reputation: 14011

How to use vc++ class library in some other project?

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

Answers (1)

Stephen Doyle
Stephen Doyle

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

Related Questions