mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-26 08:10:02 +02:00
added table under command line
This commit is contained in:
parent
139db216fe
commit
2f76afd8a6
@ -30,3 +30,12 @@ Commands
|
|||||||
-----------
|
-----------
|
||||||
|
|
||||||
.. include:: ../commands.rst
|
.. include:: ../commands.rst
|
||||||
|
|
||||||
|
|
||||||
|
Depreciated commands
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
.. csv-table:: Depreciated commands
|
||||||
|
:file: ../depreciated.csv
|
||||||
|
:widths: 35, 35
|
||||||
|
:header-rows: 1
|
||||||
|
@ -52,7 +52,8 @@ int main() {
|
|||||||
fs << '\t' << cmd << usage << help << "\n";
|
fs << '\t' << cmd << usage << help << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ofstream fs2("depreciated.txt");
|
std::ofstream fs2("depreciated.csv");
|
||||||
|
fs2 << "Old, New\n";
|
||||||
auto cmds = proxy.GetDepreciatedCommands();
|
auto cmds = proxy.GetDepreciatedCommands();
|
||||||
for (auto it : cmds){
|
for (auto it : cmds){
|
||||||
fs2 << it.first << ", " << it.second << '\n';
|
fs2 << it.first << ", " << it.second << '\n';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user