Merge pull request #5767 from tk0miya/refactor_cpp_domain

Add super method; CPPObject.get_index_text()
This commit is contained in:
Takeshi KOMIYA 2018-12-13 09:57:10 +09:00 committed by GitHub
commit 1c8797479c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6395,6 +6395,10 @@ class CPPObject(ObjectDescription):
signode['first'] = (not self.names) # hmm, what is this about?
self.state.document.note_explicit_target(signode)
def get_index_text(self, name):
# type: (unicode) -> unicode
raise NotImplementedError()
def parse_definition(self, parser):
# type: (Any) -> Any
raise NotImplementedError()