// Copyright (c) 1999-2000 David Muse // See the COPYING file for more information. #ifndef TRIM_H #define TRIM_H class trim { public: trim(); virtual ~trim(); void rightTrim(char *string); // trims all spaces off of the right hand // side of string void rightTrim(char *string, char character); // trims all characters off of the right hand // side of string void leftTrim(char *string); // trims all spaces off of the left hand // side of string void leftTrim(char *string, char character); // trims all characters off of the left hand // side of string }; #endif