Update of /cvsroot/cpptool/rfta/include/rfta/refactoring
In directory sc8-pr-cvs1:/tmp/cvs-serv12903/rfta/include/rfta/refactoring
Modified Files:
TransformList.h
Log Message:
preprocessor implementation
Index: TransformList.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/include/rfta/refactoring/TransformList.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TransformList.h 20 Dec 2003 08:59:50 -0000 1.1
--- TransformList.h 13 Jan 2004 22:39:35 -0000 1.2
***************
*** 18,21 ****
--- 18,23 ----
class Transform;
class TextDocument;
+ class Source;
+ typedef boost::shared_ptr<Source> SourcePtr;
***************
*** 45,49 ****
--- 47,55 ----
void apply( TextDocument &document );
+ void apply( SourcePtr pSource );
+
private:
+ void sortListByStartIndex();
+
/// Prevents the use of the copy constructor.
TransformList( const TransformList &other );
***************
*** 54,59 ****
struct SortPredicate;
- void sortListByStartIndex();
-
private:
typedef boost::shared_ptr<Transform> TransformPtr;
--- 60,63 ----
***************
*** 67,71 ****
// ----------------------------------
-
} // namespace Refactoring
--- 71,74 ----
|