├── LICENSE ├── README.md ├── book.tex ├── book ├── ccs.tex ├── content │ ├── about-the-author.tex │ ├── about-the-reviewer.tex │ ├── chapter1 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ └── 4.tex │ ├── chapter10 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter11 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ └── 4.tex │ ├── chapter12 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 11.tex │ │ ├── 12.tex │ │ ├── 13.tex │ │ ├── 14.tex │ │ ├── 15.tex │ │ ├── 16.tex │ │ ├── 17.tex │ │ ├── 18.tex │ │ ├── 19.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ └── 1.png │ ├── chapter13 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter14 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ └── images │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ ├── chapter15 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ └── 7.tex │ ├── chapter2 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ └── 4.tex │ ├── chapter3 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter4 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ └── 5.tex │ ├── chapter5 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ └── images │ │ │ └── 1.png │ ├── chapter6 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter7 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter8 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ └── 6.tex │ ├── chapter9 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 11.tex │ │ ├── 12.tex │ │ ├── 13.tex │ │ ├── 14.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ ├── 1.png │ │ │ └── 2.png │ └── preface.tex └── index.tex └── cover.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/README.md -------------------------------------------------------------------------------- /book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book.tex -------------------------------------------------------------------------------- /book/ccs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/ccs.tex -------------------------------------------------------------------------------- /book/content/about-the-author.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/about-the-author.tex -------------------------------------------------------------------------------- /book/content/about-the-reviewer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/about-the-reviewer.tex -------------------------------------------------------------------------------- /book/content/chapter1/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter1/0.tex -------------------------------------------------------------------------------- /book/content/chapter1/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter1/1.tex -------------------------------------------------------------------------------- /book/content/chapter1/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter1/2.tex -------------------------------------------------------------------------------- /book/content/chapter1/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter1/3.tex -------------------------------------------------------------------------------- /book/content/chapter1/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter1/4.tex -------------------------------------------------------------------------------- /book/content/chapter10/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/0.tex -------------------------------------------------------------------------------- /book/content/chapter10/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/1.tex -------------------------------------------------------------------------------- /book/content/chapter10/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/2.tex -------------------------------------------------------------------------------- /book/content/chapter10/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/3.tex -------------------------------------------------------------------------------- /book/content/chapter10/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/4.tex -------------------------------------------------------------------------------- /book/content/chapter10/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/5.tex -------------------------------------------------------------------------------- /book/content/chapter10/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter10/6.tex -------------------------------------------------------------------------------- /book/content/chapter11/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter11/0.tex -------------------------------------------------------------------------------- /book/content/chapter11/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter11/1.tex -------------------------------------------------------------------------------- /book/content/chapter11/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter11/2.tex -------------------------------------------------------------------------------- /book/content/chapter11/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter11/3.tex -------------------------------------------------------------------------------- /book/content/chapter11/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter11/4.tex -------------------------------------------------------------------------------- /book/content/chapter12/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/0.tex -------------------------------------------------------------------------------- /book/content/chapter12/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/1.tex -------------------------------------------------------------------------------- /book/content/chapter12/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/10.tex -------------------------------------------------------------------------------- /book/content/chapter12/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/11.tex -------------------------------------------------------------------------------- /book/content/chapter12/12.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/12.tex -------------------------------------------------------------------------------- /book/content/chapter12/13.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/13.tex -------------------------------------------------------------------------------- /book/content/chapter12/14.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/14.tex -------------------------------------------------------------------------------- /book/content/chapter12/15.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/15.tex -------------------------------------------------------------------------------- /book/content/chapter12/16.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/16.tex -------------------------------------------------------------------------------- /book/content/chapter12/17.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/17.tex -------------------------------------------------------------------------------- /book/content/chapter12/18.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/18.tex -------------------------------------------------------------------------------- /book/content/chapter12/19.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/19.tex -------------------------------------------------------------------------------- /book/content/chapter12/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/2.tex -------------------------------------------------------------------------------- /book/content/chapter12/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/3.tex -------------------------------------------------------------------------------- /book/content/chapter12/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/4.tex -------------------------------------------------------------------------------- /book/content/chapter12/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/5.tex -------------------------------------------------------------------------------- /book/content/chapter12/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/6.tex -------------------------------------------------------------------------------- /book/content/chapter12/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/7.tex -------------------------------------------------------------------------------- /book/content/chapter12/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/8.tex -------------------------------------------------------------------------------- /book/content/chapter12/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/9.tex -------------------------------------------------------------------------------- /book/content/chapter12/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter12/images/1.png -------------------------------------------------------------------------------- /book/content/chapter13/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/0.tex -------------------------------------------------------------------------------- /book/content/chapter13/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/1.tex -------------------------------------------------------------------------------- /book/content/chapter13/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/2.tex -------------------------------------------------------------------------------- /book/content/chapter13/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/3.tex -------------------------------------------------------------------------------- /book/content/chapter13/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/4.tex -------------------------------------------------------------------------------- /book/content/chapter13/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/5.tex -------------------------------------------------------------------------------- /book/content/chapter13/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter13/6.tex -------------------------------------------------------------------------------- /book/content/chapter14/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/0.tex -------------------------------------------------------------------------------- /book/content/chapter14/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/1.tex -------------------------------------------------------------------------------- /book/content/chapter14/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/2.tex -------------------------------------------------------------------------------- /book/content/chapter14/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/3.tex -------------------------------------------------------------------------------- /book/content/chapter14/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/4.tex -------------------------------------------------------------------------------- /book/content/chapter14/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/5.tex -------------------------------------------------------------------------------- /book/content/chapter14/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/6.tex -------------------------------------------------------------------------------- /book/content/chapter14/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/1.png -------------------------------------------------------------------------------- /book/content/chapter14/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/2.png -------------------------------------------------------------------------------- /book/content/chapter14/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/3.png -------------------------------------------------------------------------------- /book/content/chapter14/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/4.png -------------------------------------------------------------------------------- /book/content/chapter14/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/5.png -------------------------------------------------------------------------------- /book/content/chapter14/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter14/images/6.png -------------------------------------------------------------------------------- /book/content/chapter15/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/0.tex -------------------------------------------------------------------------------- /book/content/chapter15/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/1.tex -------------------------------------------------------------------------------- /book/content/chapter15/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/2.tex -------------------------------------------------------------------------------- /book/content/chapter15/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/3.tex -------------------------------------------------------------------------------- /book/content/chapter15/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/4.tex -------------------------------------------------------------------------------- /book/content/chapter15/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/5.tex -------------------------------------------------------------------------------- /book/content/chapter15/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/6.tex -------------------------------------------------------------------------------- /book/content/chapter15/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter15/7.tex -------------------------------------------------------------------------------- /book/content/chapter2/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter2/0.tex -------------------------------------------------------------------------------- /book/content/chapter2/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter2/1.tex -------------------------------------------------------------------------------- /book/content/chapter2/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter2/2.tex -------------------------------------------------------------------------------- /book/content/chapter2/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter2/3.tex -------------------------------------------------------------------------------- /book/content/chapter2/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter2/4.tex -------------------------------------------------------------------------------- /book/content/chapter3/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/0.tex -------------------------------------------------------------------------------- /book/content/chapter3/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/1.tex -------------------------------------------------------------------------------- /book/content/chapter3/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/2.tex -------------------------------------------------------------------------------- /book/content/chapter3/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/3.tex -------------------------------------------------------------------------------- /book/content/chapter3/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/4.tex -------------------------------------------------------------------------------- /book/content/chapter3/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/5.tex -------------------------------------------------------------------------------- /book/content/chapter3/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter3/6.tex -------------------------------------------------------------------------------- /book/content/chapter4/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/0.tex -------------------------------------------------------------------------------- /book/content/chapter4/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/1.tex -------------------------------------------------------------------------------- /book/content/chapter4/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/2.tex -------------------------------------------------------------------------------- /book/content/chapter4/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/3.tex -------------------------------------------------------------------------------- /book/content/chapter4/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/4.tex -------------------------------------------------------------------------------- /book/content/chapter4/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter4/5.tex -------------------------------------------------------------------------------- /book/content/chapter5/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter5/0.tex -------------------------------------------------------------------------------- /book/content/chapter5/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter5/1.tex -------------------------------------------------------------------------------- /book/content/chapter5/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter5/2.tex -------------------------------------------------------------------------------- /book/content/chapter5/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter5/3.tex -------------------------------------------------------------------------------- /book/content/chapter5/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter5/images/1.png -------------------------------------------------------------------------------- /book/content/chapter6/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/0.tex -------------------------------------------------------------------------------- /book/content/chapter6/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/1.tex -------------------------------------------------------------------------------- /book/content/chapter6/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/2.tex -------------------------------------------------------------------------------- /book/content/chapter6/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/3.tex -------------------------------------------------------------------------------- /book/content/chapter6/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/4.tex -------------------------------------------------------------------------------- /book/content/chapter6/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/5.tex -------------------------------------------------------------------------------- /book/content/chapter6/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter6/6.tex -------------------------------------------------------------------------------- /book/content/chapter7/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/0.tex -------------------------------------------------------------------------------- /book/content/chapter7/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/1.tex -------------------------------------------------------------------------------- /book/content/chapter7/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/2.tex -------------------------------------------------------------------------------- /book/content/chapter7/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/3.tex -------------------------------------------------------------------------------- /book/content/chapter7/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/4.tex -------------------------------------------------------------------------------- /book/content/chapter7/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/5.tex -------------------------------------------------------------------------------- /book/content/chapter7/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter7/6.tex -------------------------------------------------------------------------------- /book/content/chapter8/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/0.tex -------------------------------------------------------------------------------- /book/content/chapter8/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/1.tex -------------------------------------------------------------------------------- /book/content/chapter8/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/2.tex -------------------------------------------------------------------------------- /book/content/chapter8/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/3.tex -------------------------------------------------------------------------------- /book/content/chapter8/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/4.tex -------------------------------------------------------------------------------- /book/content/chapter8/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/5.tex -------------------------------------------------------------------------------- /book/content/chapter8/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter8/6.tex -------------------------------------------------------------------------------- /book/content/chapter9/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/0.tex -------------------------------------------------------------------------------- /book/content/chapter9/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/1.tex -------------------------------------------------------------------------------- /book/content/chapter9/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/10.tex -------------------------------------------------------------------------------- /book/content/chapter9/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/11.tex -------------------------------------------------------------------------------- /book/content/chapter9/12.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/12.tex -------------------------------------------------------------------------------- /book/content/chapter9/13.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/13.tex -------------------------------------------------------------------------------- /book/content/chapter9/14.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/14.tex -------------------------------------------------------------------------------- /book/content/chapter9/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/2.tex -------------------------------------------------------------------------------- /book/content/chapter9/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/3.tex -------------------------------------------------------------------------------- /book/content/chapter9/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/4.tex -------------------------------------------------------------------------------- /book/content/chapter9/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/5.tex -------------------------------------------------------------------------------- /book/content/chapter9/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/6.tex -------------------------------------------------------------------------------- /book/content/chapter9/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/7.tex -------------------------------------------------------------------------------- /book/content/chapter9/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/8.tex -------------------------------------------------------------------------------- /book/content/chapter9/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/9.tex -------------------------------------------------------------------------------- /book/content/chapter9/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/images/1.png -------------------------------------------------------------------------------- /book/content/chapter9/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/chapter9/images/2.png -------------------------------------------------------------------------------- /book/content/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/content/preface.tex -------------------------------------------------------------------------------- /book/index.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/book/index.tex -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Refactoring-with-Cpp/HEAD/cover.png --------------------------------------------------------------------------------