├── .gitignore ├── LICENSE ├── README.md ├── Software-Architecture-with-C++.tex ├── content ├── 1 │ ├── Section-1.tex │ ├── chapter1 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 11.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ ├── chapter2 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ └── 5.jpg │ └── chapter3 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 11.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg ├── 2 │ ├── Section-2.tex │ ├── chapter4 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ ├── chapter5 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── 9.tex │ ├── chapter6 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── 9.tex │ └── chapter7 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── 9.tex ├── 3 │ ├── Section-3.tex │ ├── chapter10 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ └── 8.tex │ ├── chapter11 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── images │ │ │ └── 1.jpg │ ├── chapter8 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ │ └── 1.jpg │ └── chapter9 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 10.tex │ │ ├── 11.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── 9.tex ├── 4 │ ├── Section-4.tex │ ├── chapter12 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ └── 8.tex │ ├── chapter13 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ └── 9.tex │ ├── chapter14 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ └── 8.tex │ └── chapter15 │ │ ├── 0.tex │ │ ├── 1.tex │ │ ├── 2.tex │ │ ├── 3.tex │ │ ├── 4.tex │ │ ├── 5.tex │ │ ├── 6.tex │ │ ├── 7.tex │ │ ├── 8.tex │ │ ├── 9.tex │ │ └── images │ │ └── 1.jpg ├── Appendix-A │ ├── 0.tex │ ├── 1.tex │ ├── 2.tex │ ├── 3.tex │ ├── 4.tex │ └── 5.tex ├── Assessments │ ├── 1.tex │ ├── 10.tex │ ├── 11.tex │ ├── 12.tex │ ├── 13.tex │ ├── 14.tex │ ├── 15.tex │ ├── 2.tex │ ├── 3.tex │ ├── 4.tex │ ├── 5.tex │ ├── 6.tex │ ├── 7.tex │ ├── 8.tex │ └── 9.tex └── preface.tex └── cover.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/README.md -------------------------------------------------------------------------------- /Software-Architecture-with-C++.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/Software-Architecture-with-C++.tex -------------------------------------------------------------------------------- /content/1/Section-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/Section-1.tex -------------------------------------------------------------------------------- /content/1/chapter1/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/0.tex -------------------------------------------------------------------------------- /content/1/chapter1/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/1.tex -------------------------------------------------------------------------------- /content/1/chapter1/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/10.tex -------------------------------------------------------------------------------- /content/1/chapter1/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/11.tex -------------------------------------------------------------------------------- /content/1/chapter1/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/2.tex -------------------------------------------------------------------------------- /content/1/chapter1/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/3.tex -------------------------------------------------------------------------------- /content/1/chapter1/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/4.tex -------------------------------------------------------------------------------- /content/1/chapter1/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/5.tex -------------------------------------------------------------------------------- /content/1/chapter1/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/6.tex -------------------------------------------------------------------------------- /content/1/chapter1/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/7.tex -------------------------------------------------------------------------------- /content/1/chapter1/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/8.tex -------------------------------------------------------------------------------- /content/1/chapter1/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/9.tex -------------------------------------------------------------------------------- /content/1/chapter1/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/images/1.jpg -------------------------------------------------------------------------------- /content/1/chapter1/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter1/images/2.jpg -------------------------------------------------------------------------------- /content/1/chapter2/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/0.tex -------------------------------------------------------------------------------- /content/1/chapter2/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/1.tex -------------------------------------------------------------------------------- /content/1/chapter2/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/10.tex -------------------------------------------------------------------------------- /content/1/chapter2/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/2.tex -------------------------------------------------------------------------------- /content/1/chapter2/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/3.tex -------------------------------------------------------------------------------- /content/1/chapter2/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/4.tex -------------------------------------------------------------------------------- /content/1/chapter2/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/5.tex -------------------------------------------------------------------------------- /content/1/chapter2/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/6.tex -------------------------------------------------------------------------------- /content/1/chapter2/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/7.tex -------------------------------------------------------------------------------- /content/1/chapter2/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/8.tex -------------------------------------------------------------------------------- /content/1/chapter2/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/9.tex -------------------------------------------------------------------------------- /content/1/chapter2/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/images/1.jpg -------------------------------------------------------------------------------- /content/1/chapter2/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/images/2.jpg -------------------------------------------------------------------------------- /content/1/chapter2/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/images/3.jpg -------------------------------------------------------------------------------- /content/1/chapter2/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/images/4.jpg -------------------------------------------------------------------------------- /content/1/chapter2/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter2/images/5.jpg -------------------------------------------------------------------------------- /content/1/chapter3/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/0.tex -------------------------------------------------------------------------------- /content/1/chapter3/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/1.tex -------------------------------------------------------------------------------- /content/1/chapter3/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/10.tex -------------------------------------------------------------------------------- /content/1/chapter3/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/11.tex -------------------------------------------------------------------------------- /content/1/chapter3/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/2.tex -------------------------------------------------------------------------------- /content/1/chapter3/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/3.tex -------------------------------------------------------------------------------- /content/1/chapter3/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/4.tex -------------------------------------------------------------------------------- /content/1/chapter3/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/5.tex -------------------------------------------------------------------------------- /content/1/chapter3/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/6.tex -------------------------------------------------------------------------------- /content/1/chapter3/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/7.tex -------------------------------------------------------------------------------- /content/1/chapter3/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/8.tex -------------------------------------------------------------------------------- /content/1/chapter3/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/9.tex -------------------------------------------------------------------------------- /content/1/chapter3/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/1.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/10.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/2.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/3.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/4.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/5.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/6.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/7.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/8.jpg -------------------------------------------------------------------------------- /content/1/chapter3/images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/1/chapter3/images/9.jpg -------------------------------------------------------------------------------- /content/2/Section-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/Section-2.tex -------------------------------------------------------------------------------- /content/2/chapter4/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/0.tex -------------------------------------------------------------------------------- /content/2/chapter4/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/1.tex -------------------------------------------------------------------------------- /content/2/chapter4/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/10.tex -------------------------------------------------------------------------------- /content/2/chapter4/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/2.tex -------------------------------------------------------------------------------- /content/2/chapter4/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/3.tex -------------------------------------------------------------------------------- /content/2/chapter4/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/4.tex -------------------------------------------------------------------------------- /content/2/chapter4/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/5.tex -------------------------------------------------------------------------------- /content/2/chapter4/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/6.tex -------------------------------------------------------------------------------- /content/2/chapter4/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/7.tex -------------------------------------------------------------------------------- /content/2/chapter4/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/8.tex -------------------------------------------------------------------------------- /content/2/chapter4/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/9.tex -------------------------------------------------------------------------------- /content/2/chapter4/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/images/1.jpg -------------------------------------------------------------------------------- /content/2/chapter4/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter4/images/2.jpg -------------------------------------------------------------------------------- /content/2/chapter5/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/0.tex -------------------------------------------------------------------------------- /content/2/chapter5/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/1.tex -------------------------------------------------------------------------------- /content/2/chapter5/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/2.tex -------------------------------------------------------------------------------- /content/2/chapter5/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/3.tex -------------------------------------------------------------------------------- /content/2/chapter5/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/4.tex -------------------------------------------------------------------------------- /content/2/chapter5/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/5.tex -------------------------------------------------------------------------------- /content/2/chapter5/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/6.tex -------------------------------------------------------------------------------- /content/2/chapter5/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/7.tex -------------------------------------------------------------------------------- /content/2/chapter5/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/8.tex -------------------------------------------------------------------------------- /content/2/chapter5/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter5/9.tex -------------------------------------------------------------------------------- /content/2/chapter6/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/0.tex -------------------------------------------------------------------------------- /content/2/chapter6/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/1.tex -------------------------------------------------------------------------------- /content/2/chapter6/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/2.tex -------------------------------------------------------------------------------- /content/2/chapter6/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/3.tex -------------------------------------------------------------------------------- /content/2/chapter6/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/4.tex -------------------------------------------------------------------------------- /content/2/chapter6/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/5.tex -------------------------------------------------------------------------------- /content/2/chapter6/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/6.tex -------------------------------------------------------------------------------- /content/2/chapter6/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/7.tex -------------------------------------------------------------------------------- /content/2/chapter6/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/8.tex -------------------------------------------------------------------------------- /content/2/chapter6/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter6/9.tex -------------------------------------------------------------------------------- /content/2/chapter7/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/0.tex -------------------------------------------------------------------------------- /content/2/chapter7/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/1.tex -------------------------------------------------------------------------------- /content/2/chapter7/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/2.tex -------------------------------------------------------------------------------- /content/2/chapter7/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/3.tex -------------------------------------------------------------------------------- /content/2/chapter7/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/4.tex -------------------------------------------------------------------------------- /content/2/chapter7/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/5.tex -------------------------------------------------------------------------------- /content/2/chapter7/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/6.tex -------------------------------------------------------------------------------- /content/2/chapter7/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/7.tex -------------------------------------------------------------------------------- /content/2/chapter7/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/8.tex -------------------------------------------------------------------------------- /content/2/chapter7/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/2/chapter7/9.tex -------------------------------------------------------------------------------- /content/3/Section-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/Section-3.tex -------------------------------------------------------------------------------- /content/3/chapter10/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/0.tex -------------------------------------------------------------------------------- /content/3/chapter10/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/1.tex -------------------------------------------------------------------------------- /content/3/chapter10/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/2.tex -------------------------------------------------------------------------------- /content/3/chapter10/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/3.tex -------------------------------------------------------------------------------- /content/3/chapter10/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/4.tex -------------------------------------------------------------------------------- /content/3/chapter10/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/5.tex -------------------------------------------------------------------------------- /content/3/chapter10/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/6.tex -------------------------------------------------------------------------------- /content/3/chapter10/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/7.tex -------------------------------------------------------------------------------- /content/3/chapter10/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter10/8.tex -------------------------------------------------------------------------------- /content/3/chapter11/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/0.tex -------------------------------------------------------------------------------- /content/3/chapter11/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/1.tex -------------------------------------------------------------------------------- /content/3/chapter11/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/2.tex -------------------------------------------------------------------------------- /content/3/chapter11/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/3.tex -------------------------------------------------------------------------------- /content/3/chapter11/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/4.tex -------------------------------------------------------------------------------- /content/3/chapter11/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/5.tex -------------------------------------------------------------------------------- /content/3/chapter11/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/6.tex -------------------------------------------------------------------------------- /content/3/chapter11/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/7.tex -------------------------------------------------------------------------------- /content/3/chapter11/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/8.tex -------------------------------------------------------------------------------- /content/3/chapter11/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter11/images/1.jpg -------------------------------------------------------------------------------- /content/3/chapter8/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/0.tex -------------------------------------------------------------------------------- /content/3/chapter8/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/1.tex -------------------------------------------------------------------------------- /content/3/chapter8/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/2.tex -------------------------------------------------------------------------------- /content/3/chapter8/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/3.tex -------------------------------------------------------------------------------- /content/3/chapter8/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/4.tex -------------------------------------------------------------------------------- /content/3/chapter8/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/5.tex -------------------------------------------------------------------------------- /content/3/chapter8/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/6.tex -------------------------------------------------------------------------------- /content/3/chapter8/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/7.tex -------------------------------------------------------------------------------- /content/3/chapter8/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/8.tex -------------------------------------------------------------------------------- /content/3/chapter8/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/9.tex -------------------------------------------------------------------------------- /content/3/chapter8/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter8/images/1.jpg -------------------------------------------------------------------------------- /content/3/chapter9/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/0.tex -------------------------------------------------------------------------------- /content/3/chapter9/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/1.tex -------------------------------------------------------------------------------- /content/3/chapter9/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/10.tex -------------------------------------------------------------------------------- /content/3/chapter9/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/11.tex -------------------------------------------------------------------------------- /content/3/chapter9/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/2.tex -------------------------------------------------------------------------------- /content/3/chapter9/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/3.tex -------------------------------------------------------------------------------- /content/3/chapter9/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/4.tex -------------------------------------------------------------------------------- /content/3/chapter9/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/5.tex -------------------------------------------------------------------------------- /content/3/chapter9/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/6.tex -------------------------------------------------------------------------------- /content/3/chapter9/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/7.tex -------------------------------------------------------------------------------- /content/3/chapter9/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/8.tex -------------------------------------------------------------------------------- /content/3/chapter9/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/3/chapter9/9.tex -------------------------------------------------------------------------------- /content/4/Section-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/Section-4.tex -------------------------------------------------------------------------------- /content/4/chapter12/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/0.tex -------------------------------------------------------------------------------- /content/4/chapter12/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/1.tex -------------------------------------------------------------------------------- /content/4/chapter12/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/2.tex -------------------------------------------------------------------------------- /content/4/chapter12/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/3.tex -------------------------------------------------------------------------------- /content/4/chapter12/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/4.tex -------------------------------------------------------------------------------- /content/4/chapter12/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/5.tex -------------------------------------------------------------------------------- /content/4/chapter12/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/6.tex -------------------------------------------------------------------------------- /content/4/chapter12/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/7.tex -------------------------------------------------------------------------------- /content/4/chapter12/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter12/8.tex -------------------------------------------------------------------------------- /content/4/chapter13/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/0.tex -------------------------------------------------------------------------------- /content/4/chapter13/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/1.tex -------------------------------------------------------------------------------- /content/4/chapter13/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/2.tex -------------------------------------------------------------------------------- /content/4/chapter13/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/3.tex -------------------------------------------------------------------------------- /content/4/chapter13/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/4.tex -------------------------------------------------------------------------------- /content/4/chapter13/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/5.tex -------------------------------------------------------------------------------- /content/4/chapter13/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/6.tex -------------------------------------------------------------------------------- /content/4/chapter13/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/7.tex -------------------------------------------------------------------------------- /content/4/chapter13/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/8.tex -------------------------------------------------------------------------------- /content/4/chapter13/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter13/9.tex -------------------------------------------------------------------------------- /content/4/chapter14/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/0.tex -------------------------------------------------------------------------------- /content/4/chapter14/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/1.tex -------------------------------------------------------------------------------- /content/4/chapter14/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/2.tex -------------------------------------------------------------------------------- /content/4/chapter14/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/3.tex -------------------------------------------------------------------------------- /content/4/chapter14/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/4.tex -------------------------------------------------------------------------------- /content/4/chapter14/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/5.tex -------------------------------------------------------------------------------- /content/4/chapter14/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/6.tex -------------------------------------------------------------------------------- /content/4/chapter14/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/7.tex -------------------------------------------------------------------------------- /content/4/chapter14/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter14/8.tex -------------------------------------------------------------------------------- /content/4/chapter15/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/0.tex -------------------------------------------------------------------------------- /content/4/chapter15/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/1.tex -------------------------------------------------------------------------------- /content/4/chapter15/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/2.tex -------------------------------------------------------------------------------- /content/4/chapter15/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/3.tex -------------------------------------------------------------------------------- /content/4/chapter15/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/4.tex -------------------------------------------------------------------------------- /content/4/chapter15/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/5.tex -------------------------------------------------------------------------------- /content/4/chapter15/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/6.tex -------------------------------------------------------------------------------- /content/4/chapter15/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/7.tex -------------------------------------------------------------------------------- /content/4/chapter15/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/8.tex -------------------------------------------------------------------------------- /content/4/chapter15/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/9.tex -------------------------------------------------------------------------------- /content/4/chapter15/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/4/chapter15/images/1.jpg -------------------------------------------------------------------------------- /content/Appendix-A/0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/0.tex -------------------------------------------------------------------------------- /content/Appendix-A/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/1.tex -------------------------------------------------------------------------------- /content/Appendix-A/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/2.tex -------------------------------------------------------------------------------- /content/Appendix-A/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/3.tex -------------------------------------------------------------------------------- /content/Appendix-A/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/4.tex -------------------------------------------------------------------------------- /content/Appendix-A/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Appendix-A/5.tex -------------------------------------------------------------------------------- /content/Assessments/1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/1.tex -------------------------------------------------------------------------------- /content/Assessments/10.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/10.tex -------------------------------------------------------------------------------- /content/Assessments/11.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/11.tex -------------------------------------------------------------------------------- /content/Assessments/12.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/12.tex -------------------------------------------------------------------------------- /content/Assessments/13.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/13.tex -------------------------------------------------------------------------------- /content/Assessments/14.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/14.tex -------------------------------------------------------------------------------- /content/Assessments/15.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/15.tex -------------------------------------------------------------------------------- /content/Assessments/2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/2.tex -------------------------------------------------------------------------------- /content/Assessments/3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/3.tex -------------------------------------------------------------------------------- /content/Assessments/4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/4.tex -------------------------------------------------------------------------------- /content/Assessments/5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/5.tex -------------------------------------------------------------------------------- /content/Assessments/6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/6.tex -------------------------------------------------------------------------------- /content/Assessments/7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/7.tex -------------------------------------------------------------------------------- /content/Assessments/8.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/8.tex -------------------------------------------------------------------------------- /content/Assessments/9.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/Assessments/9.tex -------------------------------------------------------------------------------- /content/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/content/preface.tex -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoweiChen/Software-Architecture-with-Cpp/HEAD/cover.png --------------------------------------------------------------------------------