class FFI::Clang::FullComment

Public Instance Methods

text() click to toggle source
# File lib/ffi/clang/comment.rb, line 277
def text
        self.children.collect{|child| child.text.strip}.join("\n")
end
to_html() click to toggle source
# File lib/ffi/clang/comment.rb, line 269
def to_html
        Lib.extract_string Lib.full_comment_get_as_html(@comment)
end
to_xml() click to toggle source
# File lib/ffi/clang/comment.rb, line 273
def to_xml
        Lib.extract_string Lib.full_comment_get_as_xml(@comment)
end