00001 // format_paragraph.h 00002 00003 #ifndef FORMAT_PARAGRAPH_H 00004 #define FORMAT_PARAGRAPH_H 00005 00006 #include <iosfwd> 00007 #include <string> 00008 00016 class format_paragraph 00017 { 00018 public: 00019 format_paragraph(const char* str, int left_col=0 , int right_col=78, bool indent_first_line=true); 00020 00021 std::string m_text; 00022 int m_left_col; 00023 int m_right_col; 00024 bool m_indent_first_line; 00025 00026 friend std::ostream& operator<< (std::ostream&, const format_paragraph &); 00027 }; 00028 00029 #endif // FORMAT_PARAGRAPH_H
1.4.3