-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Classes split over multiple files #19
Comments
The tool currently works on a per-file basis. The main reason for this is to accurately detect the existence of docs that shouldn't be around anymore (because an API was either moved or deleted.) If you were to compile a program, A couple fixes could address the situation. |
To me this is a bug in As for deleted API, shouldn't it be the other way around? Shouldn't |
In the PImpl idiom, you want the PImpl to be hidden. As such, |
I'm not sure what PImpl idiom has to do with anything, but I'm sure that a documentation tool should not dictate how a user is to organize their code. That would be the proverbial tail wagging the dog. I very much hope this issue gets fixed somehow. I think hyde's out-of-source design is brilliant, and I'd love to use, but with the current per-file processing, I simply can't. |
I have the following situation (in many different situations):
If I run hyde on
a.hpp
alone, I don't get any output forB
. If I run hyde with withb.hpp
alone or passing botha.hpp
andb.hpp
, I get:Is there a way to support this use case?
The text was updated successfully, but these errors were encountered: