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,
|
||||
build_dir_spec: BuildDirSpecification
|
||||
):
|
||||
self._build_spec: BuildDirSpecification = None
|
||||
self._build_spec: BuildDirSpecification = build_dir_spec
|
||||
|
||||
self._default_formatting_config: Optional[FormattingConfig] = None
|
||||
|
||||
|
@ -18,3 +18,12 @@ class PyTeXBuilder:
|
|||
self._clean_old_files: True
|
||||
|
||||
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