-
Notifications
You must be signed in to change notification settings - Fork 481
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
[WIP] Rewrite cpp binding by pimpl #3584
[WIP] Rewrite cpp binding by pimpl #3584
Conversation
* @brief The mode of the entry | ||
*/ | ||
enum class EntryMode { | ||
kFile = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we need to add a k
prefix here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tag it as a enum,distinguish it from macro
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that totally makes sense for enum
, but this in an enum class
so it is namespaced which should be totally sufficient.
const noexcept; | ||
|
||
private: | ||
struct Rep; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the meaning of Rep
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
representative,it's a common cpp impl name
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
Signed-off-by: Jack Drogon <[email protected]>
625bf93
to
cf59ad8
Compare
Hi, @JackDrogon, thanks for your effort, are you still interested in working on this now? |
Sorry, I've been taking care of some personal business lately, so I should be free to continue starting next week. |
Closed as stale and inactive. Any future effort would require a significant rewrite of this patch. |
No description provided.