1
class class1:
public:
...
private:
class impl; //the class that i wanna hide
std::unique_ptr<impl> impl_;

//my doxygen file:

EXTRACT_ALL = YES

EXTRACT_PRIVATE = NO

EXTRACT_PACKAGE = NO

EXTRACT_STATIC = NO

EXTRACT_LOCAL_CLASSES = YES

EXTRACT_LOCAL_METHODS = NO

HIDE_UNDOC_MEMBERS = YES

HIDE_UNDOC_CLASSES = NO

1 Answer 1

1

Changing my doxygen file made it work!

EXTRACT_LOCAL_CLASSES  = NO
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.