Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When other C++ projects consume a published API, (lib, etc), what is the best way to publish the headers of that lib?

I am decoupling interfaces from implementations for several small projects, (100-2000 code artifacts) via different static/shared libraries--but with their specific headers. (example: api.lib, and api-impl.lib).

When I build these projects, the output goes to ..\bin\release ... And after that, I have custom post build events that copy headers recursively into the output folders to preserve the header hierarchies so that they can be included like: #include "Configuration/Logging/LogManager.h", (which corresponds to the namespace/class: "Configuration::Logging::LogManager".

What are the standard ways of doing this?

Are precompiled headers useful for this?

References would be greatly appreciated!

share|improve this question
This is a very open-ended question. Nearly every "coding standards/guidelines" for every major Open and/or Free Software project will tell you what to do and not to do regarding libraries; some companies also publish their guidelines. Just search for "<comany|project> coding standards", using the name of any big project (e.g. GNU, apache, mozilla, libreoffice, etc) or company (e.g. Google, Adobe, IBM, etc). – DanielKO Feb 14 at 2:37
So, in general, the way I am copying the headers over is quasi normal? – Wind And Flame Feb 14 at 7:23

closed as not constructive by Sam Miller, Nicol Bolas, gnat, Mario, Sindre Sorhus Feb 14 at 8:35

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Precompiled headers are unique and private to each project. It's not useful to provide a StdAfx.h because people could use it as a normal header (and if they are using percompiled headers, they'll already have their own StdAfx.h that includes the headers their project needs, such as Windows headers, STL headers, etc). All you can do is suggest to them to include your library's headers in their StdAfx.h.

There aren't many best practices for library headers apart from the typical MYPROJECT_EXPORTS macro that's defined for you by Visual C++ for DLLs:

#ifdef MYPROJECT_EXPORTS
#define MYPROJECT_API __declspec(dllexport)
#else
#define MYPROJECT_API __declspec(dllimport)
#endif
share|improve this answer
I am not too familiar with how this works, but before I get too far into that, is this a C++ standard? Is this Macro common in GCC projects? – Wind And Flame Feb 14 at 4:03
It's not part of the C++ standard (the C++ standard doesn't say anything about DLLs), but it's pretty standard in the general sense. I'm sure GCC supports it but maybe with different syntax. I just mentioned it because you talked about "static/shared libraries". – user1610015 Feb 14 at 4:40

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