vote up 3 vote down star

Hi,

I have two C++ projects in a solution both of which need to share two common classes. What I want to avoid is having two copies of the source files but I am relucant to just include the source in one project and reference it in the other.

How is this sort of situation normally handled?

flag

Why are you reluctant to include the source in one and reference it from the other? – sean e Jun 8 at 15:25
Can you please clarify with some context about the responsibilities of the shared classes and the projects that use them? – Aidan Ryan Jun 17 at 13:36

1 Answer

vote up 13 vote down

Create a third project, which is either a dynamic or static library (prefer the latter for ease of use) and put the shared code in there. The two other projects #include the headers from the library project and link with library project binary.

link|flag
Thanks for the answer, could you point me to any code examples or articles so I can get to grips with this? – Whyamistilltyping Jun 8 at 11:34
What development environment are you using? – Neil Butterworth Jun 8 at 11:52
Visual Studio 2008 for Win32. – Whyamistilltyping Jun 8 at 14:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.