I would like to extend cc-mode
in Emacs to support D style enums as follow
enum EnumName: EnumType
{
// enumerators...
}
The part : EnumType
is the new part that needs to be supported.
Does anybody know how to solve this or which function to modify?
Emacs just got support for C++11 enum class
syntax so maybe someone is up-to-date on this issue.