Chris Lattner | 8bd12b8 | 2007-09-15 22:21:22 +0000 | [diff] [blame^] | 1 | //===--- Rewriter.cpp - Code rewriting interface --------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Chris Lattner and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the Rewriter class, which is used for code |
| 11 | // transformations. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Rewrite/Rewriter.h" |
| 16 | using namespace clang; |
| 17 | |
| 18 | |
| 19 | void RewriteBuffer::RemoveText(unsigned OrigOffset, unsigned Size) { |
| 20 | // FIXME: |
| 21 | } |
| 22 | |
| 23 | void RewriteBuffer::InsertText(unsigned OrigOffset, |
| 24 | const char *StrData, unsigned StrLen) { |
| 25 | // FIXME: |
| 26 | } |