Files
mlpack/fastlib/branches/fastlib-old/base/base.h
T
Ryan Curtin f6864dd435 Move fastlib-old (originally 'fastlib') to fastlib/branches/fastlib-old where it
will sit until the end of time and nobody will touch it because it's old
2010-01-31 22:31:55 +00:00

27 lines
403 B
C

// Copyright 2007 Georgia Institute of Technology. All rights reserved.
/**
* @file base.h
*
* Includes all of FASTlib's bare necessities.
*
* @see common.h
* @see debug.h
* @see compiler.h
* @see cc.h
* @see otrav.h
*/
#ifndef BASE_H
#define BASE_H
#include "common.h"
#include "debug.h"
#ifdef __cplusplus
#include "cc.h"
#include "ccmem.h"
#include "otrav.h"
#endif
#endif /* BASE_H */