Top-level include for basics
This commit is contained in:
parent
064ee2e4f1
commit
a9c8d84ac2
1 changed files with 24 additions and 0 deletions
24
src/basics/basics.hh
Normal file
24
src/basics/basics.hh
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/* basics.hh
|
||||||
|
* vim: set tw=80:
|
||||||
|
* Eryn Wells <eryn@erynwells.me>
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Top-level include for the basics module.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __BASICS_BASICS_HH__
|
||||||
|
#define __BASICS_BASICS_HH__
|
||||||
|
|
||||||
|
#include "matrix.hh"
|
||||||
|
#include "types.hh"
|
||||||
|
|
||||||
|
|
||||||
|
namespace charles {
|
||||||
|
namespace basics {
|
||||||
|
|
||||||
|
typedef Matrix<4,4> Matrix4;
|
||||||
|
|
||||||
|
} /* namespace basics */
|
||||||
|
} /* namespace charles */
|
||||||
|
|
||||||
|
#endif /* __BASICS_BASICS_HH__ */
|
Loading…
Add table
Add a link
Reference in a new issue