#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; Response.setBuffer(true); Response.begin(); Response.title(L"Test of Response.flush"); printf("

Test of Response.flush


\n"); printf("Output before flush
\n"); Response.flush(); Response.end(); }