Listing 7

#include <fstream>
#include <ootl/ootl_filters.hpp>
#include "to_upper.hpp"

using namespace std;
using namespace ootl;

int main() {
  ifstream in("input.txt");
  ofstream out("output.txt");
  in  > Filter(to_upper::main) > out;
}