outline pytexbuilder interface
This commit is contained in:
parent
dd85f7425d
commit
9d3496b2ba
1 changed files with 11 additions and 2 deletions
|
@ -9,7 +9,7 @@ class PyTeXBuilder:
|
||||||
self,
|
self,
|
||||||
build_dir_spec: BuildDirSpecification
|
build_dir_spec: BuildDirSpecification
|
||||||
):
|
):
|
||||||
self._build_spec: BuildDirSpecification = None
|
self._build_spec: BuildDirSpecification = build_dir_spec
|
||||||
|
|
||||||
self._default_formatting_config: Optional[FormattingConfig] = None
|
self._default_formatting_config: Optional[FormattingConfig] = None
|
||||||
|
|
||||||
|
@ -17,4 +17,13 @@ class PyTeXBuilder:
|
||||||
self._overwrite_existing_files: bool = False
|
self._overwrite_existing_files: bool = False
|
||||||
self._clean_old_files: True
|
self._clean_old_files: True
|
||||||
|
|
||||||
self._allow_dirty: bool = False
|
self._allow_dirty: bool = False
|
||||||
|
|
||||||
|
def build_sources(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def build_documentation(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def build_tex(self):
|
||||||
|
pass
|
Loading…
Reference in a new issue