]> gcc.gnu.org Git - gcc.git/blob - gcc/objc/NXConstStr.m
NXConstantString.h renamed to NXConstStr.h.
[gcc.git] / gcc / objc / NXConstStr.m
1 /* Implementation of the NXConstantString class for Objective-C.
2 Copyright (C) 1995 Free Software Foundation, Inc.
3 Contributed by Pieter J. Schoenmakers <tiggr@es.ele.tue.nl>
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 GNU CC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21 #include "objc/NXConstStr.h"
22
23 @implementation NXConstantString
24
25 -(const char *) cString
26 {
27 return (c_string);
28 } /* -cString */
29
30 -(unsigned int) length
31 {
32 return (len);
33 } /* -length */
34
35 @end
This page took 0.046622 seconds and 6 git commands to generate.