mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Change all include objects/*.h to include gnustep/base/*.h.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1434 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3f093c4909
commit
24afb4ad7f
20 changed files with 26 additions and 26 deletions
|
@ -1,7 +1,7 @@
|
|||
/* A simple demonstration of the GNU Dictionary object.
|
||||
In this example the Dictionary holds int's which are keyed by strings. */
|
||||
|
||||
#include <gnustep/base/stdobjects.h>
|
||||
#include <gnustep/base/stdall.h>
|
||||
#include <gnustep/base/Dictionary.h>
|
||||
|
||||
int main()
|
||||
|
|
|
@ -54,10 +54,10 @@ enum {
|
|||
@"GNU Objective C (%s %d.%d.%d) [%s %d]\n"
|
||||
|
||||
#define WRITE_SIGNATURE_FORMAT_ARGS \
|
||||
STRINGIFY(OBJECTS_PACKAGE_NAME), \
|
||||
OBJECTS_MAJOR_VERSION, \
|
||||
OBJECTS_MINOR_VERSION, \
|
||||
OBJECTS_SUBMINOR_VERSION, \
|
||||
STRINGIFY(GNUSTEP_BASE_PACKAGE_NAME), \
|
||||
GNUSTEP_BASE_MAJOR_VERSION, \
|
||||
GNUSTEP_BASE_MINOR_VERSION, \
|
||||
GNUSTEP_BASE_SUBMINOR_VERSION, \
|
||||
[self defaultDecoderClassname], \
|
||||
format_version
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <Foundation/NSZone.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#include <objects/numbers.h>
|
||||
#include <gnustep/base/numbers.h>
|
||||
|
||||
/**** Type, Constant, and Macro Definitions **********************************/
|
||||
|
||||
|
@ -67,12 +67,12 @@ objects_@XX@_unset_name(objects_@XX@_t *xx);
|
|||
/** Serial numbers... **/
|
||||
|
||||
/* Returns the (process-wide) unique number given to the Libfn
|
||||
* structure XX. See <objects/numbers.h> for more info. */
|
||||
* structure XX. See <gnustep/base/numbers.h> for more info. */
|
||||
size_t
|
||||
objects_@XX@_serial_number(objects_@XX@_t *xx);
|
||||
|
||||
/* Gives XX a new (process-wide) unique number. Numbers are not
|
||||
* reused. See <objects/numbers.h> for more info. */
|
||||
* reused. See <gnustep/base/numbers.h> for more info. */
|
||||
size_t
|
||||
_objects_@XX@_set_serial_number(objects_@XX@_t *xx);
|
||||
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
/**** Included Headers *******************************************************/
|
||||
|
||||
#include <objects/callbacks.h>
|
||||
#include <objects/@YY@.h>
|
||||
#include <gnustep/base/callbacks.h>
|
||||
#include <gnustep/base/@YY@.h>
|
||||
|
||||
/**** Type, Constant, and Macro Definitions **********************************/
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
#endif
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <objects/objc-malloc.h>
|
||||
#include <gnustep/base/objc-malloc.h>
|
||||
@class String;
|
||||
|
||||
/* The following group of lines are maintained by the libobjects Makefile */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/stdobjects.h>
|
||||
#include <gnustep/base/stdall.h>
|
||||
#include <gnustep/base/behavior.h>
|
||||
#include <Foundation/NSCoder.h>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Test Heap class. */
|
||||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
#include <Foundation/NSValue.h>
|
||||
#include <Foundation/NSAutoreleasePool.h>
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ int main()
|
|||
|
||||
#else
|
||||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
#include <Foundation/NSArchiver.h>
|
||||
#include <Foundation/NSAutoreleasePool.h>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _server_h
|
||||
#define _server_h
|
||||
|
||||
#include <gnustep/base/stdobjects.h>
|
||||
#include <gnustep/base/stdall.h>
|
||||
#include <gnustep/base/Connection.h>
|
||||
#include <gnustep/base/Array.h>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/stdobjects.h>
|
||||
#include <gnustep/base/stdall.h>
|
||||
#include <stdio.h>
|
||||
#include <gnustep/base/SocketPort.h>
|
||||
#include <gnustep/base/BinaryCStream.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
#include <Foundation/NSValue.h>
|
||||
#include <gnustep/base/Invocation.h>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
|
||||
int main()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Test Heap class. */
|
||||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
#define N 20
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
#define N 20
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
#include <gnustep/base/BinaryCoder.h>
|
||||
|
||||
void test(id objects)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
|
||||
#if (sun && __svr4__) || defined(__hpux) || defined(_SEQUENT_)
|
||||
long lrand48();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <gnustep/base/objects.h>
|
||||
#include <gnustep/base/all.h>
|
||||
#include <assert.h>
|
||||
|
||||
int main()
|
||||
|
|
Loading…
Reference in a new issue