Pentax Optio S4.

Testimonials

versed hobbies (deleted)

#ifndef SPSTRING #define SPSTRING //#define NDEBUG //Get rid of the assert()'s #include #include #include #include #include #define DEFAULT_ALLOC 16 #define MAXLENGTH 1024 class StringTokenizer; class String { friend class StringTokenizer; protected: unsigned len; //actual length of string u… Read more

#ifndef SPSTRING #define SPSTRING //#define NDEBUG //Get rid of the assert()'s #include #include #include #include #include #define DEFAULT_ALLOC 16 #define MAXLENGTH 1024 class StringTokenizer; class String { friend class StringTokenizer; protected: unsigned len; //actual length of string unsigned sz; //allocated length char *s; //where the actual chars are stored. enum {MaxLength=MAXLENGTH}; public: String(); String(int n); String(char *t); String::String(int n, char c); String(const String&); ~String(); String& operator=(const String&); String& operator=(const char *); char & operator[](unsigned i); const char & operator[](unsigned i) const; //conversion of numbers to strings void ConvertInt(int i); void ConvertDouble(double d); //conversion of strings to numbers double Double(void); long Long(void); int Int(); char * chars(); //returns the actual char_string // unsigned Unsigned(void); //IO friend istream& operator>>(istream & InStream, String& S); friend ostream& operator =(const String& S, char * T); friend operator>=(char * T, const String& S); friend operator

Read less
May 14, 2006

One time the man at hand here mastered a CD for me and that was very kind. We kept in touch. Then I saw him again years later and he played me a tune that he just wrote. It was unlike anything I had ever heard. It pleased me greatly. Point is, this guy is great because he is and I said so and I know.

June 17, 2006

C79 aka Charles, does exist. I've seen him on many occasions, and talked with him on many as well. I can personally attest to him being: human, male, nice, thoughtful, artsy, and often sporting cool hair. These things will probably remain the same for a considerable period of time.

November 28, 2005