Files
xahaud/src/ripple
Scott Schurr 118c25c0f0 Compile time check preflight returns no tec (RIPD-1624):
The six different ranges of TER codes are broken up into six
different enumerations.  A template class allows subsets of
these enumerations to be aggregated.  This technique allows
verification at compile time that no TEC codes are returned
before the signature is checked.

Conversion between TER instance and integer is provided by
named functions.  This makes accidental conversion almost
impossible and makes type abuse easier to spot in the code
base.
2018-05-15 11:28:50 -04:00
..
2018-05-15 09:55:28 -04:00
2018-04-08 01:52:11 -07:00
2018-05-15 09:56:47 -04:00
2018-04-08 01:52:12 -07:00
2018-05-07 11:31:23 -07:00
2018-04-08 02:24:38 -07:00
2018-05-07 11:36:27 -07:00
2018-01-17 13:43:54 -08:00
2018-04-08 01:52:12 -07:00
2018-05-15 09:55:28 -04:00
2018-04-08 01:52:12 -07:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem