mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-16 17:01:53 +00:00
rename Runtime.h -- it's not a class.
This commit is contained in:
parent
1a767849ab
commit
81d927c702
5 changed files with 9 additions and 9 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef __ruamoko_Object_h
|
||||
#define __ruamoko_Object_h
|
||||
|
||||
#include "Runtime.h"
|
||||
#include "runtime.h"
|
||||
|
||||
@class Protocol;
|
||||
|
||||
|
|
|
@ -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_
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue