blob: 1e35f78b7a85688ca1ea9995aee84ead7f440a8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _ATTRIBS_H
#define _ATTRIBS_H
// a convenience header to get all the attrib types in one whack
#include "attrbool.h"
#include "attrfloat.h"
#include "attrint.h"
#include "attrstr.h"
#include "attrfn.h"
#endif
|