Skip to content

Commit

Permalink
added new doxy group for decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
SJulianS committed May 9, 2024
1 parent fae3754 commit ebdba47
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/hal_core/doxy_groups.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
* @ingroup core
*/

/**
* @defgroup decorators Decorators
* @ingroup core
*/

/**
* @defgroup pins Pins
* @ingroup core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@

namespace hal
{
/**
* A Boolean function decorator that provides functionality to operate on the associated Boolean function.
*
* @ingroup decorators
*/
class NETLIST_API BooleanFunctionDecorator
{
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@

namespace hal
{
/**
* A net decorator that provides functionality to translate between nets and Boolean function variables.
*
* @ingroup decorators
*/
class NETLIST_API BooleanFunctionNetDecorator
{
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@

namespace hal
{
/**
* A netlist decorator that provides functionality to modify the associated netlist.
*
* @ingroup decorators
*/
class NETLIST_API NetlistModificationDecorator
{
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@

namespace hal
{
/**
* A netlist decorator that operates on an existing subgraph of the associated netlist to, e.g., copy the subgraph as a new netlist object or compute a Boolean function describing the subgraph.
*
* @ingroup decorators
*/
class NETLIST_API SubgraphNetlistDecorator
{
public:
Expand Down

0 comments on commit ebdba47

Please sign in to comment.