ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Iffy/Cleaner.cpp
Revision: 284
Committed: 2004-11-18T16:37:13-08:00 (20 years, 7 months ago) by Douglas Thrift
File size: 378 byte(s)
Log Message:
This has horrible failure right now, but it should probably do stuff.

File Contents

# Content
1 // IFfy
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #include "Cleaner.hpp"
8
9 void Cleaner::clean()
10 {
11 //
12 }
13
14 ios::PrintWriter& operator<<(ios::PrintWriter& pout, const Cleaner& cleaner)
15 {
16 _foreach (ext::Vector<Segment>, segment, cleaner.segments)
17 {
18 switch (segment->type)
19 {
20 case TEXT:
21 pout << segment->text;
22
23 break;
24 case TAG:
25 pout << segment->tag;
26 }
27 }
28
29 return pout;
30 }

Properties

Name Value
svn:eol-style native
svn:keywords Id