Added C++ modules for errors and options.
authorTeemu Murtola <teemu.murtola@cbr.su.se>
Tue, 21 Sep 2010 15:13:54 +0000 (17:13 +0200)
committerTeemu Murtola <teemu.murtola@cbr.su.se>
Tue, 21 Sep 2010 15:13:54 +0000 (17:13 +0200)
commit4d39dbdaa88b63df182fb3ca1d9133f2809277c1
tree9ac4418988c5cb165b5d1bb1fdfad944d7f5955c
parent701ccf3b9c2e7277bfc094eac4fc6b37be938625
Added C++ modules for errors and options.
49 files changed:
CMakeLists.txt
cmake/FindGTest.cmake [new file with mode: 0644]
src/CMakeLists.txt
src/gromacs/CMakeLists.txt [new file with mode: 0644]
src/gromacs/errorreporting.h [new file with mode: 0644]
src/gromacs/errorreporting/abstracterrorreporter.h [new file with mode: 0644]
src/gromacs/errorreporting/emptyerrorreporter.h [new file with mode: 0644]
src/gromacs/errorreporting/errorcontext.h [new file with mode: 0644]
src/gromacs/errorreporting/reporters.cpp [new file with mode: 0644]
src/gromacs/errorreporting/standarderrorreporter-impl.h [new file with mode: 0644]
src/gromacs/errorreporting/standarderrorreporter.h [new file with mode: 0644]
src/gromacs/fatalerror.h [new file with mode: 0644]
src/gromacs/fatalerror/fatalerror.cpp [new file with mode: 0644]
src/gromacs/fatalerror/fatalerror.h [new file with mode: 0644]
src/gromacs/options.h [new file with mode: 0644]
src/gromacs/options/CMakeLists.txt [new file with mode: 0644]
src/gromacs/options/abstractoption.h [new file with mode: 0644]
src/gromacs/options/abstractoptionstorage.h [new file with mode: 0644]
src/gromacs/options/asciihelpwriter-impl.h [new file with mode: 0644]
src/gromacs/options/asciihelpwriter.cpp [new file with mode: 0644]
src/gromacs/options/asciihelpwriter.h [new file with mode: 0644]
src/gromacs/options/basicoptions.cpp [new file with mode: 0644]
src/gromacs/options/basicoptions.h [new file with mode: 0644]
src/gromacs/options/basicoptionstorage.cpp [new file with mode: 0644]
src/gromacs/options/basicoptionstorage.h [new file with mode: 0644]
src/gromacs/options/cmdlineparser-impl.h [new file with mode: 0644]
src/gromacs/options/cmdlineparser.cpp [new file with mode: 0644]
src/gromacs/options/cmdlineparser.h [new file with mode: 0644]
src/gromacs/options/globalproperties.cpp [new file with mode: 0644]
src/gromacs/options/globalproperties.h [new file with mode: 0644]
src/gromacs/options/option.cpp [new file with mode: 0644]
src/gromacs/options/option.h [new file with mode: 0644]
src/gromacs/options/optionfiletype.h [new file with mode: 0644]
src/gromacs/options/optionflags.h [new file with mode: 0644]
src/gromacs/options/options-impl.h [new file with mode: 0644]
src/gromacs/options/options.cpp [new file with mode: 0644]
src/gromacs/options/options.h [new file with mode: 0644]
src/gromacs/options/optionsassigner-impl.h [new file with mode: 0644]
src/gromacs/options/optionsassigner.cpp [new file with mode: 0644]
src/gromacs/options/optionsassigner.h [new file with mode: 0644]
src/gromacs/options/optionstorageinterface.h [new file with mode: 0644]
src/gromacs/options/optionsvisitor.cpp [new file with mode: 0644]
src/gromacs/options/optionsvisitor.h [new file with mode: 0644]
src/gromacs/options/tests/.gitignore [new file with mode: 0644]
src/gromacs/options/tests/CMakeLists.txt [new file with mode: 0644]
src/gromacs/options/tests/cmdlineparser.cpp [new file with mode: 0644]
src/gromacs/options/tests/option.cpp [new file with mode: 0644]
src/gromacs/options/tests/optionsassigner.cpp [new file with mode: 0644]
src/gromacs/options/tests/test_main.cpp [new file with mode: 0644]