/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
76 by Gustav Hartvigsson
* Started working on this thing...
1
#ifdef __H_STREAM__
2
#ifndef __H_STREAM_PRIVATE__
3
4
struct SStreamPrivate {
5
  spointer * data;
6
};
7
8
#endif /* __H_STREAM_PRIVATE__ */
9
#else /* #ifdef __H_STREAM__ */
10
#pragma message ("Trying to include file StreamPrivate.h without includeing Stream.h")
11
#endif /* #ifdef __H_STREAM__ */
12