#include directives
This commit is contained in:
parent
b8a9f34639
commit
9809469864
|
@ -1,5 +1,5 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "ColoredSquare.h"
|
#include "ColoredSquare.h"
|
||||||
|
|
||||||
|
|
2
Figure.h
2
Figure.h
|
@ -1,8 +1,6 @@
|
||||||
#ifndef __FIGURE_H__
|
#ifndef __FIGURE_H__
|
||||||
#define __FIGURE_H__
|
#define __FIGURE_H__
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include "Object.h"
|
#include "Object.h"
|
||||||
|
|
||||||
struct Figure;
|
struct Figure;
|
||||||
|
|
1
Square.c
1
Square.c
|
@ -1,4 +1,5 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "Square.h"
|
#include "Square.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue