mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +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@1433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3b12f20e53
commit
3f093c4909
40 changed files with 97 additions and 97 deletions
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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[])
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#define second_server_h
|
||||
|
||||
#include <Foundation/NSObject.h>
|
||||
#include <objects/Array.h>
|
||||
#include <gnustep/base/Array.h>
|
||||
|
||||
@interface SecondServer : NSObject
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue