2020-01-24 18:56:51 +00:00
|
|
|
# config.py
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-03-03 21:45:30 +00:00
|
|
|
"BitStreamQueue", "BitStreamField"
|
2020-01-24 18:56:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|