diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 02:51:31 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 05:07:06 +0100 |
commit | d503c3b07c2157658f699294c44ad5be244727a5 (patch) | |
tree | f25b9927f5bdcfca98a82f3bc917548cbec5962b /src/Makefile.am | |
parent | 355cae277c29104b982f4dc7aa3e05fc06945325 (diff) | |
download | sciteco-d503c3b07c2157658f699294c44ad5be244727a5.tar.gz |
factored out file loading and saving into the View specialisation IOView
this will allow us to use the same algorithms for loading and saving
Q-Registers (from/to file).
* Saving with EW when a Q-Reg is edited has been fixed (was broken earlier)
* SciTECO save point files are now named .teco-X-BASENAME
When using IOView for Q-Regs, there will be no way to sensible count
the save points. Each write of a Q-Reg may be to another file.
Therefore, we number save-points globally.
If the sequence of writes has to be reconstructed manually,
one can still look at the save point files' modification dates
* give more informative error messages when saving a file fails
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d02c0b5..9972f71 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -25,6 +25,7 @@ libsciteco_base_a_SOURCES = main.cpp sciteco.h \ undo.cpp undo.h \ expressions.cpp expressions.h \ document.cpp document.h \ + ioview.cpp ioview.h \ qregisters.cpp qregisters.h \ ring.cpp ring.h \ parser.cpp parser.h \ |