rename Runtime.h -- it's not a class.

This commit is contained in:
Jeff Teunissen 2010-12-24 01:34:54 -05:00
parent 1a767849ab
commit 81d927c702
5 changed files with 9 additions and 9 deletions

View file

@ -2,10 +2,10 @@
#define __ruamoko_Array_h
#include "Object.h"
#include "Runtime.h"
#include "runtime.h"
/**
The %Array class is a general ordered collection class.
The Array class is a general ordered collection class.
The %Array class manages an ordered collection of objects.
If you want to subclass Array, you need to override these methods:

View file

@ -7,9 +7,9 @@ nobase_pkginclude_HEADERS= \
\
draw.h key.h \
\
cbuf.h cmd.h cvar.h file.h gib.h hash.h plist.h \
cbuf.h cmd.h cvar.h file.h gib.h hash.h plist.h runtime.h \
AutoreleasePool.h Array.h Entity.h List.h ListNode.h Object.h \
PropertyList.h Protocol.h Runtime.h Stack.h \
PropertyList.h Protocol.h Stack.h \
\
gui/Group.h gui/InputLine.h gui/Pic.h gui/Point.h gui/Rect.h gui/Size.h \
gui/Slider.h gui/Text.h gui/View.h

View file

@ -1,7 +1,7 @@
#ifndef __ruamoko_Object_h
#define __ruamoko_Object_h
#include "Runtime.h"
#include "runtime.h"
@class Protocol;

View file

@ -1,5 +1,5 @@
#ifndef __ruamoko_Runtime_h_
#define __ruamoko_Runtime_h_
#ifndef __ruamoko_runtime_h_
#define __ruamoko_runtime_h_
#define INT_MAX 2147483648
#define INT_MIN (-INT_MAX - 1)
@ -74,4 +74,4 @@ typedef enum {
@extern BOOL object_is_instance (id object);
@extern BOOL object_is_meta_class (id object);
#endif //__ruamoko_Runtime_h_
#endif //__ruamoko_runtime_h_

View file

@ -1,7 +1,7 @@
#include "math.h"
#include "Array.h"
#include "Runtime.h"
#include "runtime.h"
#define STANDARD_CAPACITY 16
#define ARRAY_MAX_GRANULARITY 100