Files
pilotclient/src/blackmisc/pqallquantities.h

19 lines
585 B
C

#ifndef PQUNITSALL_H
#define PQUNITSALL_H
// All units / quantities, required for the instantiations of the template
// especially as CRTP is used.
// http://www.parashift.com/c++-faq-lite/separate-template-fn-defn-from-decl.html
// http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern
#include "blackmisc/pqlength.h"
#include "blackmisc/pqfrequency.h"
#include "blackmisc/pqpressure.h"
#include "blackmisc/pqmass.h"
#include "blackmisc/pqspeed.h"
#include "blackmisc/pqtemperature.h"
#include "blackmisc/pqangle.h"
#include "blackmisc/pqtime.h"
#endif // PQUNITSALL_H