move documentation from manual to headers

This commit is contained in:
Arvid Norberg
2013-07-26 06:11:10 +00:00
parent 13d6a20aec
commit 7cbd54b327
6 changed files with 314 additions and 801 deletions

View File

@@ -209,7 +209,7 @@ def parse_class(lno, lines, filename):
if l.startswith('//'):
if verbose: print 'desc %s' % l
l = l.split('//')[1]
l = l[2:]
if len(l) and l[0] == ' ': l = l[1:]
context += l + '\n'
continue
@@ -299,7 +299,7 @@ def parse_enum(lno, lines, filename):
if l.startswith('//'):
if verbose: print 'desc %s' % l
l = l.split('//')[1]
l = l[2:]
if len(l) and l[0] == ' ': l = l[1:]
context += l + '\n'
continue
@@ -415,7 +415,7 @@ for filename in files:
if l.startswith('//'):
if verbose: print 'desc %s' % l
l = l.split('//')[1]
l = l[2:]
if len(l) and l[0] == ' ': l = l[1:]
context += l + '\n'
continue