blob: 0e9022d85ba8074a483936197ed89a97b550fefb [file] [log] [blame]
package org.eclipse.cdt.internal.formatter;
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*/
public class CCodeFormatter {
//public FormatterOptions options;
public CCodeFormatter() {
}
// CCodeFormatter(FormatterOptions options) {
// }
public String formatSourceString(String content) {
return content;
}
}