12 lines
118 B
C
12 lines
118 B
C
|
#ifndef __SCHEMA_H__
|
||
|
#define __SCHEMA_H__
|
||
|
|
||
|
#include "Tuple.h"
|
||
|
|
||
|
class schema {
|
||
|
public:
|
||
|
Tuple s;
|
||
|
};
|
||
|
|
||
|
#endif
|