rayzor
changeset 21:8c4859442200
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 15 Apr 2014 20:52:05 +0300 |
parents | 6b11a3f8706e |
children | 5380ff64e83f |
files | src/scene.cc src/scene.h |
diffstat | 2 files changed, 7 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/src/scene.cc Tue Apr 15 01:36:03 2014 +0300 1.2 +++ b/src/scene.cc Tue Apr 15 20:52:05 2014 +0300 1.3 @@ -279,8 +279,10 @@ 1.4 1.5 bool Scene::load(FILE *fp) 1.6 { 1.7 - char *block; 1.8 - while((block = get_next_block(fp))) { 1.9 + return false; // TODO 1.10 +} 1.11 1.12 - } 1.13 +bool Scene::save(FILE *fp) const 1.14 +{ 1.15 + return false; // TODO 1.16 }
2.1 --- a/src/scene.h Tue Apr 15 01:36:03 2014 +0300 2.2 +++ b/src/scene.h Tue Apr 15 20:52:05 2014 +0300 2.3 @@ -1,8 +1,9 @@ 2.4 #ifndef SCENE_H_ 2.5 #define SCENE_H_ 2.6 2.7 +#include <stdio.h> 2.8 #include <string> 2.9 -#include <vector.h> 2.10 +#include "vector.h" 2.11 #include "snode.h" 2.12 #include "object.h" 2.13 #include "light.h"