17 lines
193 B
C++
17 lines
193 B
C++
/*
|
|
1 Nodetypes
|
|
|
|
This is the diefinition of some types for trees.
|
|
|
|
*/
|
|
#ifndef NODETYPES_H
|
|
#define NODETYPES_H
|
|
|
|
namespace periodic {
|
|
|
|
enum treetypes {SIMPLE, COMPOSITION, REPETITION};
|
|
|
|
}
|
|
|
|
#endif
|