// file : CCF/Example/CodeGenerationKit/Indentation/IDL/indent_idl.cpp // author : Boris Kolpackov // cvs-id : $Id$ #include "CCF/CodeGenerationKit/IndentationIDL.hpp" #include "CCF/CodeGenerationKit/IndentationImplanter.hpp" #include using std::cout; using std::endl; int main () { Indentation::Implanter guard (cout); cout << "const string s = \"Hello \\\"world;\";"; cout << "const char c1 = \'\\\'\';"; cout << "const char c2 = \';\';"; cout << "interface I {" << "void foo ();" << "};"; }