We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi
I want my tick trait class to have private access to its argument T type.
So i need to declare my tick triat class as friend of T.
How do i do that , cause not sure what the ecat class prototype would be for tick class cause i use the Macro
example `TICK_TRAIT(My_Trait) { template<class T_SomeType> auto require(T&& x) -> valid< decltype(T_SomeType::SomeFunc()) >; };`
class SomeClass{ private: friend My_Trait<SomeClass>; SomeFunc(){} }
In summary need to declare Tick class as friend of SomeClass Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
I want my tick trait class to have private access to its argument T type.
So i need to declare my tick triat class as friend of T.
How do i do that , cause not sure what the ecat class prototype would be for tick class cause i use the Macro
In summary need to declare Tick class as friend of SomeClass
Thanks
The text was updated successfully, but these errors were encountered: