summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/plib/pmain.h
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2019-11-08 23:52:14 +0100
committer couriersud <couriersud@gmx.org>2019-11-08 23:52:14 +0100
commit88f702b416ba9eb930e6c1e932124d5f24b1a24c (patch)
tree955f3047b79156d7b2bbab55fcbd4fbc94661f1d /src/lib/netlist/plib/pmain.h
parent731c4fe52073a7a7561bf04559e9f0b3b791388d (diff)
netlist: code maintenance and bug fixes. (nw)
- comment style migration continues. - Fixed a two bugs in the truthtable ignore inputs code - refactored the truthtable code a bit for better readability. - updated netlist specific gitignore.
Diffstat (limited to 'src/lib/netlist/plib/pmain.h')
-rw-r--r--src/lib/netlist/plib/pmain.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/lib/netlist/plib/pmain.h b/src/lib/netlist/plib/pmain.h
index 288e3bc8536..afa5adb3267 100644
--- a/src/lib/netlist/plib/pmain.h
+++ b/src/lib/netlist/plib/pmain.h
@@ -1,13 +1,13 @@
// license:GPL-2.0+
// copyright-holders:Couriersud
-/*
- * poptions.h
- *
- */
#ifndef PMAIN_H_
#define PMAIN_H_
+///
+/// \file poptions.h
+///
+
#include "palloc.h"
#include "poptions.h"
#include "pstream.h"
@@ -27,10 +27,9 @@ int main(int argc, char **argv) { return plib::app::mainrun<appclass, char>(argc
namespace plib {
-/***************************************************************************
- Application
-***************************************************************************/
+ /// \brief Application class.
+ ///
class app : public options
{
public:
@@ -65,4 +64,4 @@ namespace plib {
-#endif /* PMAIN_H_ */
+#endif // PMAIN_H_