Source: str.h


Annotated List
Files
Globals
Hierarchy
Index
#ifndef _STRING_H_
#define _STRING_H_

#include "atom.h"

class String : public Atoma
{
 private:
  const char * _value;

 public:
  String();
  String(const String&);
  String(const char*);
  ~String();

  const char * getValue() const { return _value; }

  bool operator==(const String & s);
  bool operator==(const char*);
  String operator+(const String & s);

  virtual ostream & print(int,ostream&) const;
  virtual void flush(const char*) const;
  virtual Element * copy() const;
  virtual bool isEvent() const { return false; }

};

#endif

Generated by: wuerthne on clouseau on Fri Sep 21 19:20:46 2001, using kdoc 2.0a53.