Change all include objects/*.h to include gnustep/base/*.h.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-04-17 18:40:03 +00:00
parent 3b12f20e53
commit 3f093c4909
40 changed files with 97 additions and 97 deletions

View file

@ -1,8 +1,8 @@
/* A simple demonstration of the GNU Dictionary object.
In this example the Dictionary holds int's which are keyed by strings. */
#include <objects/stdobjects.h>
#include <objects/Dictionary.h>
#include <gnustep/base/stdobjects.h>
#include <gnustep/base/Dictionary.h>
int main()
{

View file

@ -1,8 +1,8 @@
#include <objects/Connection.h>
#include <objects/Proxy.h>
#include <gnustep/base/Connection.h>
#include <gnustep/base/Proxy.h>
#include "first-server.h"
#include <objects/String.h>
#include <gnustep/base/String.h>
int main(int argc, char *argv[])
{

View file

@ -1,7 +1,7 @@
#include <objects/Connection.h>
#include <gnustep/base/Connection.h>
#include "first-server.h"
#include <objects/String.h>
#include <gnustep/base/String.h>
@implementation FirstServer
- sayHiTo: (char *)name

View file

@ -1,6 +1,6 @@
#include <stdio.h>
#include <objects/SocketPort.h>
#include <objects/String.h>
#include <gnustep/base/SocketPort.h>
#include <gnustep/base/String.h>
#define MSG "Hello from a client SocketPort."
#define BUFFER_SIZE 80

View file

@ -1,5 +1,5 @@
#include <stdio.h>
#include <objects/SocketPort.h>
#include <gnustep/base/SocketPort.h>
#define MSG "Hello back to you, from a server SocketPort"
#define BUFFER_SIZE 80

View file

@ -1,8 +1,8 @@
#ifndef second_client_h
#define second_client_h
#include <objects/Connection.h>
#include <objects/Proxy.h>
#include <gnustep/base/Connection.h>
#include <gnustep/base/Proxy.h>
#include "second-server.h"
@interface AppellationObject : NSObject

View file

@ -1,8 +1,8 @@
#include "second-client.h"
#include <objects/String.h>
#include <objects/Notification.h>
#include <objects/Invocation.h>
#include <objects/RunLoop.h>
#include <gnustep/base/String.h>
#include <gnustep/base/Notification.h>
#include <gnustep/base/Invocation.h>
#include <gnustep/base/RunLoop.h>
#include <Foundation/NSDate.h>
#include <Foundation/NSException.h>

View file

@ -2,7 +2,7 @@
#define second_server_h
#include <Foundation/NSObject.h>
#include <objects/Array.h>
#include <gnustep/base/Array.h>
@interface SecondServer : NSObject
{

View file

@ -1,10 +1,10 @@
#include "second-server.h"
#include "second-client.h"
#include <objects/Connection.h>
#include <objects/TcpPort.h>
#include <objects/String.h>
#include <objects/Notification.h>
#include <objects/Invocation.h>
#include <gnustep/base/Connection.h>
#include <gnustep/base/TcpPort.h>
#include <gnustep/base/String.h>
#include <gnustep/base/Notification.h>
#include <gnustep/base/Invocation.h>
id announce_new_port (id notification)
{

View file

@ -1,7 +1,7 @@
/* A simple example of writing and reading to a file using the
GNU StdioStream object. */
#include <objects/StdioStream.h>
#include <gnustep/base/StdioStream.h>
int main()
{

View file

@ -4,11 +4,11 @@
text archive format.
*/
#include <objects/Archiver.h>
#include <objects/TextCStream.h>
#include <objects/Array.h>
#include <objects/Dictionary.h>
#include <objects/NSString.h>
#include <gnustep/base/Archiver.h>
#include <gnustep/base/TextCStream.h>
#include <gnustep/base/Array.h>
#include <gnustep/base/Dictionary.h>
#include <gnustep/base/NSString.h>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSValue.h>