├── 9781484251867.jpg ├── Contributing.md ├── GettingStarted.txt ├── HOW__TO_CONTACT_AUTHOR.txt ├── LICENSE.txt ├── README.md ├── ch1 ├── Ch1.sln ├── bugsHead │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── bugsHead.vcxproj │ ├── bugsHead.vcxproj.filters │ ├── bugsHead.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── colorSquares │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── colors.vcxproj │ ├── colors.vcxproj.filters │ ├── colors.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── colorSquaresWithLabels │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── colorsWLabels.vcxproj │ ├── colorsWLabels.vcxproj.filters │ ├── colorsWLabels.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── drawDot │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── drawDot.vcxproj │ ├── drawDot.vcxproj.filters │ ├── drawDot.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── drawingPad.pdf ├── hello │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── hello.vcxproj │ ├── hello.vcxproj.filters │ ├── hello.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx └── quotation │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── quotation.vcxproj │ ├── quotation.vcxproj.filters │ ├── quotation.vcxproj.user │ ├── runw │ └── runx ├── ch10 ├── Ch10.sln ├── enumClass │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── enumClass.vcxproj │ ├── enumClass.vcxproj.filters │ ├── enumClass.vcxproj.user │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ └── runx ├── enums │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── enums.vcxproj │ ├── enums.vcxproj.filters │ ├── enums.vcxproj.user │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ └── runx ├── lowestTemp │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── lowestTemp.vcxproj │ ├── lowestTemp.vcxproj.filters │ ├── lowestTemp.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── readInPrintOut │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── readInPrintOut.vcxproj │ ├── readInPrintOut.vcxproj.filters │ ├── readInPrintOut.vcxproj.user │ ├── runw │ └── runx └── ticTacToeBoard │ ├── Makefile │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ ├── O.png │ └── X.png │ ├── runw │ ├── runx │ ├── ticTacToeBoard.vcxproj │ ├── ticTacToeBoard.vcxproj.filters │ └── ticTacToeBoard.vcxproj.user ├── ch11 ├── Ch11.sln ├── bouncingBall │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── bouncingBall.vcxproj │ ├── bouncingBall.vcxproj.filters │ ├── bouncingBall.vcxproj.user │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ └── runx ├── bouncingBallsArray │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── bouncingBallsArray.vcxproj │ ├── bouncingBallsArray.vcxproj.filters │ ├── bouncingBallsArray.vcxproj.user │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ └── runx ├── spritefish1 │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ │ └── discus-fish.png │ ├── runw │ ├── runx │ ├── spriteFish1.vcxproj │ ├── spriteFish1.vcxproj.filters │ └── spriteFish1.vcxproj.user ├── spritefish2 │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ │ └── discus-fish.png │ ├── runw │ ├── runx │ ├── spriteFish2.vcxproj │ ├── spriteFish2.vcxproj.filters │ └── spriteFish2.vcxproj.user └── staircase │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── staircase.vcxproj │ ├── staircase.vcxproj.filters │ └── staircase.vcxproj.user ├── ch12 ├── aliensBuzzOurWorld │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── aliensBuzzOurWorld.vcxproj │ ├── aliensBuzzOurWorld.vcxproj.filters │ ├── aliensBuzzOurWorld.vcxproj.user │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ │ ├── 178267__alqutis__hovercar-short.wav │ │ ├── sign-2881876-small.png │ │ └── ufo-2718088-small.png │ ├── runw │ └── runx ├── ch12.sln ├── keystate │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── keystate.vcxproj │ ├── keystate.vcxproj.filters │ ├── keystate.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── splat │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ │ ├── 445117__breviceps__cartoon-splat.wav │ │ └── splat.png │ ├── runw │ ├── runx │ ├── splat.vcxproj │ ├── splat.vcxproj.filters │ └── splat.vcxproj.user └── trickortreat │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ ├── 159509__mistersherlock__halloween-graveyd-short.mp3 │ ├── 326813__mrose6__echoed-screams-short.wav │ ├── 342153__robcro6010__circus-theme-short - Copy.wav │ ├── 342153__robcro6010__circus-theme-short.wav │ ├── 388284__matypresidente__water-drop-short.wav │ ├── 457741__osiruswaltz__wall-bump-1.wav │ ├── Sinister-Fonts_Werewolf-Moon │ │ ├── Werewolf Moon Font Info and Read Me - Sinister Fonts.txt │ │ ├── Werewolf Moon.otf │ │ ├── Werewolf Moon.ttf │ │ └── Werewolf-Moon-Font-by-Chad-Savage_-_SinisterFonts.jpg │ ├── candy.png │ ├── goodPumpkin.png │ ├── haunted-house.jpg │ ├── jack-o-lantern.png │ ├── sadPumpkin.png │ └── yum.png │ ├── runw │ ├── runx │ ├── trickOrTreat.vcxproj │ ├── trickOrTreat.vcxproj.filters │ └── trickOrTreat.vcxproj.user ├── ch13 ├── average │ ├── Makefile │ ├── average.vcxproj │ ├── average.vcxproj.filters │ └── main.cpp ├── capitalizeFile │ ├── Makefile │ ├── capitalizeFile.vcxproj │ ├── capitalizeFile.vcxproj.filters │ ├── input.txt │ └── main.cpp ├── ch13.sln ├── etaoinShrdlu │ ├── Makefile │ ├── etaoinShrdlu.vcxproj │ ├── etaoinShrdlu.vcxproj.filters │ └── main.cpp ├── hello │ ├── Makefile │ ├── hello.vcxproj │ ├── hello.vcxproj.filters │ └── main.cpp ├── killerRobots │ ├── Makefile │ ├── killerRobots.vcxproj │ ├── killerRobots.vcxproj.filters │ ├── level1.txt │ └── main.cpp ├── killerRobotsUsingCin │ ├── Makefile │ ├── killerRobotsUsingCin.vcxproj │ ├── killerRobotsUsingCin.vcxproj.filters │ └── main.cpp └── temperature.txt ├── ch14 ├── ch14.sln ├── charArrays │ ├── Makefile │ ├── charArrays.vcxproj │ ├── charArrays.vcxproj.filters │ └── main.cpp ├── passcode │ ├── Makefile │ ├── main.cpp │ ├── passcode.vcxproj │ └── passcode.vcxproj.filters └── strcpyVersions │ ├── Makefile │ ├── main.cpp │ ├── strcpyVersions.vcxproj │ └── strcpyVersions.vcxproj.filters ├── ch15 ├── ch15.sln ├── date--beforeDefaultParameters │ ├── Makefile │ ├── date--beforeDefaultParameters.vcxproj │ ├── date--beforeDefaultParameters.vcxproj.filters │ └── main.cpp ├── date--first │ ├── Makefile │ ├── date.vcxproj │ ├── date.vcxproj.filters │ └── main.cpp └── date--last │ ├── Makefile │ ├── date--last.vcxproj │ ├── date--last.vcxproj.filters │ └── main.cpp ├── ch16 ├── car │ ├── Makefile │ ├── car.cpp │ ├── car.h │ ├── car.vcxproj │ ├── car.vcxproj.filters │ └── main.cpp ├── ch16.sln ├── circularIncludes │ ├── Makefile │ ├── circularIncludes.vcxproj │ ├── circularIncludes.vcxproj.filters │ ├── main.cpp │ ├── stopwatch.h │ └── time.h ├── date │ ├── Makefile │ ├── date.cpp │ ├── date.h │ ├── date.vcxproj │ ├── date.vcxproj.filters │ └── main.cpp └── makefilesAndClean │ ├── Makefile.complete │ ├── Makefile.notComplete │ ├── Makefile.simple │ ├── cleanup.bat │ ├── main.cpp │ ├── myclass.cpp │ └── myclass.h ├── ch17 ├── ch17.sln └── string │ ├── Makefile │ ├── main.cpp │ ├── string.cpp │ ├── string.h │ ├── string.vcxproj │ ├── string.vcxproj.filters │ └── string.vcxproj.user ├── ch18 ├── ch18.sln ├── factorial │ ├── Makefile │ ├── factorial.vcxproj │ ├── factorial.vcxproj.filters │ └── main.cpp ├── stack │ ├── Makefile │ ├── stack.h │ ├── stack.vcxproj │ ├── stack.vcxproj.filters │ └── testStack.cpp └── string │ ├── Makefile │ ├── main.cpp │ ├── string.cpp │ ├── string.h │ ├── string.vcxproj │ └── string.vcxproj.filters ├── ch19 ├── cardgames │ ├── README-g++.txt │ ├── montana.vcxproj │ ├── montana.vcxproj.filters │ ├── source │ │ ├── Makefile.mingw │ │ ├── Makefile.unix │ │ ├── card.cpp │ │ ├── card.h │ │ ├── cardgroup.cpp │ │ ├── cardgroup.h │ │ ├── cell.h │ │ ├── deck.cpp │ │ ├── deck.h │ │ ├── gridLoc.h │ │ ├── io.cpp │ │ ├── io.h │ │ ├── montana.cpp │ │ ├── montana.h │ │ ├── montana_main.cpp │ │ ├── myProgram.cpp │ │ ├── testCard.cpp │ │ ├── testGroups.cpp │ │ └── waste.h │ ├── testCard.vcxproj │ ├── testCard.vcxproj.filters │ ├── testGroups.vcxproj │ └── testGroups.vcxproj.filters ├── ch19.sln └── employees │ ├── Makefile │ ├── date.cpp │ ├── date.h │ ├── employee.cpp │ ├── employee.h │ ├── employees.vcxproj │ ├── employees.vcxproj.filters │ ├── employees.vcxproj.user │ ├── main.cpp │ ├── manager.cpp │ └── manager.h ├── ch2 ├── Ch2.sln ├── beach │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── beach.vcxproj │ ├── beach.vcxproj.filters │ ├── beach.vcxproj.user │ ├── main.cpp │ ├── media │ │ └── beach.jpg │ ├── runw │ └── runx ├── flamingo │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── flamingo.vcxproj │ ├── flamingo.vcxproj.filters │ ├── flamingo.vcxproj.user │ ├── main.cpp │ ├── media │ │ ├── beach.jpg │ │ └── flamingo.png │ ├── runw │ └── runx ├── pupdog │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── media │ │ ├── beach.jpg │ │ ├── flamingo.png │ │ └── pupdog.png │ ├── pupdog.vcxproj │ ├── pupdog.vcxproj.filters │ ├── pupdog.vcxproj.user │ ├── runw │ └── runx └── sound │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── media │ ├── 321530__robbo799__church-bell.wav │ └── 457729__razor5__boss-battle-2-0.wav │ ├── runw │ ├── runx │ ├── sound.vcxproj │ ├── sound.vcxproj.filters │ └── sound.vcxproj.user ├── ch20 ├── ch20.sln ├── swap │ ├── Makefile │ ├── main.cpp │ ├── swap.vcxproj │ ├── swap.vcxproj.filters │ └── swap.vcxproj.user ├── unusual │ ├── Makefile │ ├── unusual.cpp │ ├── unusual.vcxproj │ └── unusual.vcxproj.filters ├── vectorOfInt │ ├── Makefile │ ├── main.cpp │ ├── vector.cpp │ ├── vector.h │ ├── vectorOfInt.vcxproj │ └── vectorOfInt.vcxproj.filters └── vectorTemplate │ ├── Makefile │ ├── main.cpp │ ├── vector.h │ ├── vectorTemplate.vcxproj │ └── vectorTemplate.vcxproj.filters ├── ch21 ├── Ch 21.sln ├── powerupsExercise │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── PowerupSet.h │ ├── README.txt │ ├── SSDL_Project.sln │ ├── SSDL_Project.vcxproj │ ├── SSDL_Project.vcxproj.filters │ ├── SSDL_Project.vcxproj.user │ ├── circle.h │ ├── dddx │ ├── flashyPowerup.cpp │ ├── flashyPowerup.h │ ├── gdbx │ ├── main.cpp │ ├── megaPowerup.cpp │ ├── megaPowerup.h │ ├── powerup.h │ ├── runw │ ├── runx │ ├── shape.cpp │ ├── shape.h │ ├── text.cpp │ ├── text.h │ ├── wormhole.cpp │ └── wormhole.h └── shapes │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── SSDL_Project.vcxproj │ ├── SSDL_Project.vcxproj.filters │ ├── SSDL_Project.vcxproj.user │ ├── circle.h │ ├── dddx │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── shape.cpp │ ├── shape.h │ ├── text.cpp │ └── text.h ├── ch22 ├── ch22.sln ├── lists │ ├── Makefile │ ├── list.h │ ├── lists.vcxproj │ ├── lists.vcxproj.filters │ └── main.cpp └── listsExample.txt ├── ch23 ├── algorithm │ ├── Makefile │ ├── algorithm.vcxproj │ ├── algorithm.vcxproj.filters │ └── main.cpp ├── ch23.sln ├── initializer_list │ ├── Makefile │ ├── initializer_list.vcxproj │ ├── initializer_list.vcxproj.filters │ ├── main.cpp │ └── vector.h ├── iterators │ ├── Makefile │ ├── iterators.vcxproj │ ├── iterators.vcxproj.filters │ ├── list.h │ └── main.cpp └── range │ ├── Makefile │ ├── main.cpp │ ├── range.vcxproj │ └── range.vcxproj.filters ├── ch24 ├── cardLibDLL │ ├── card.cpp │ ├── card.h │ ├── cardLibDLL.cpp │ ├── cardLibDLL.vcxproj │ ├── cardLibDLL.vcxproj.filters │ ├── cardgroup.cpp │ ├── cardgroup.h │ ├── cardsSetup.h │ ├── cell.h │ ├── deck.cpp │ ├── deck.h │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── waste.h ├── cardLibDLLNoPCH │ ├── card.cpp │ ├── card.h │ ├── cardLibDLL.cpp │ ├── cardLibDLLNoPCH.vcxproj │ ├── cardLibDLLNoPCH.vcxproj.filters │ ├── cardgroup.cpp │ ├── cardgroup.h │ ├── cardsSetup.h │ ├── cell.h │ ├── deck.cpp │ ├── deck.h │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── waste.h ├── cardLibStatic │ ├── card.cpp │ ├── card.h │ ├── cardLibStatic.vcxproj │ ├── cardLibStatic.vcxproj.filters │ ├── cardgroup.cpp │ ├── cardgroup.h │ ├── cell.h │ ├── deck.cpp │ ├── deck.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── waste.h ├── cardLibStaticNoPCH │ ├── card.cpp │ ├── card.h │ ├── cardLibStaticNoPCH.vcxproj │ ├── cardLibStaticNoPCH.vcxproj.filters │ ├── cardgroup.cpp │ ├── cardgroup.h │ ├── cell.h │ ├── deck.cpp │ ├── deck.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── waste.h ├── cardLibg++ │ ├── Makefile │ ├── card.cpp │ ├── card.h │ ├── cardgroup.cpp │ ├── cardgroup.h │ ├── cell.h │ ├── deck.cpp │ ├── deck.h │ └── waste.h ├── ch24.sln ├── usesDLL │ ├── gridLoc.h │ ├── io.cpp │ ├── io.h │ ├── montana.cpp │ ├── montana.h │ ├── montana_main.cpp │ ├── usesDLL.vcxproj │ ├── usesDLL.vcxproj.filters │ └── usesDLL.vcxproj.user ├── usesDLLNoPCH │ ├── gridLoc.h │ ├── io.cpp │ ├── io.h │ ├── montana.cpp │ ├── montana.h │ ├── montana_main.cpp │ ├── usesDLLNoPCH.vcxproj │ ├── usesDLLNoPCH.vcxproj.filters │ └── usesDLLNoPCH.vcxproj.user ├── usesG++ │ ├── Makefile │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── gridLoc.h │ ├── io.cpp │ ├── io.h │ ├── montana.cpp │ ├── montana.h │ ├── montana_main.cpp │ ├── runw │ └── runx ├── usesStatic │ ├── gridLoc.h │ ├── io.cpp │ ├── io.h │ ├── montana.cpp │ ├── montana.h │ ├── montana_main.cpp │ ├── usesStaticLib.vcxproj │ └── usesStaticLib.vcxproj.filters └── usesStaticNoPCH │ ├── gridLoc.h │ ├── io.cpp │ ├── io.h │ ├── montana.cpp │ ├── montana.h │ ├── montana_main.cpp │ ├── usesStaticLibNoPCH.vcxproj │ └── usesStaticLibNoPCH.vcxproj.filters ├── ch26 ├── 01-sstream │ ├── 01-sstream.vcxproj │ ├── 01-sstream.vcxproj.filters │ ├── 01-sstream.vcxproj.user │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ └── runx ├── 01-sstreamWithoutSSDL │ ├── 01-sstreamWoSSDL.vcxproj │ ├── 01-sstreamWoSSDL.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 02-iomanip │ ├── 02-iomanip.vcxproj │ ├── 02-iomanip.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 03-cmdLineArgs │ ├── 03-cmdLineArgs.vcxproj │ ├── 03-cmdLineArgs.vcxproj.filters │ ├── 03-cmdLineArgs.vcxproj.user │ ├── Makefile │ ├── file1.txt │ ├── file2.txt │ └── main.cpp ├── 04-staticCastEtAl │ ├── 04-staticCastEtAl.vcxproj │ ├── 04-staticCastEtAl.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 05-06-constexpr │ ├── 05, 06-constexpr.vcxproj │ ├── 05, 06-constexpr.vcxproj.filters │ ├── Makefile │ ├── card.cpp │ ├── card.h │ └── testCard.cpp ├── 07-userDefLiterals │ ├── 07-userDefLiterals.vcxproj │ ├── 07-userDefLiterals.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 08-lambdas │ ├── 08-lambdas.vcxproj │ ├── 08-lambdas.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 09-structuredBindings │ ├── 09-structuredBindings.vcxproj │ ├── 09-structuredBindings.vcxproj.filters │ ├── Makefile │ └── main.cpp ├── 10-smartPointersMisc │ ├── 10-smartPtrsMisc.vcxproj │ ├── 10-smartPtrsMisc.vcxproj.filters │ ├── Makefile │ ├── date.cpp │ ├── date.h │ └── main.cpp ├── 10-smartPtrsWithShapes │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── SSDL_Project.vcxproj │ ├── SSDL_Project.vcxproj.filters │ ├── SSDL_Project.vcxproj.user │ ├── circle.h │ ├── dddx │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── shape.cpp │ ├── shape.h │ ├── text.cpp │ └── text.h ├── 11-flags │ ├── 11-flags.vcxproj │ ├── 11-flags.vcxproj.filters │ ├── Makefile │ ├── flags.vcxproj.user │ └── main.cpp └── ch26.sln ├── ch27 ├── ch27.sln ├── friends │ ├── Makefile │ ├── area.cpp │ ├── area.h │ ├── areas.txt │ ├── friends.vcxproj │ ├── friends.vcxproj.filters │ └── main.cpp ├── protected │ ├── Makefile │ ├── main.cpp │ ├── protected.vcxproj │ └── protected.vcxproj.filters ├── templateSpec │ ├── Makefile │ ├── templateSpec.vcxproj │ ├── templateSpec.vcxproj.filters │ ├── templateSpecialization.cpp │ └── vector.h └── userCastOp │ ├── Makefile │ ├── main.cpp │ ├── string.cpp │ ├── string.h │ ├── userCastOp.vcxproj │ └── userCastOp.vcxproj.filters ├── ch28 ├── ch28.sln ├── hello │ ├── Makefile │ ├── hello.c │ ├── hello.vcxproj │ └── hello.vcxproj.filters ├── io │ ├── Makefile │ ├── io.vcxproj │ ├── io.vcxproj.filters │ └── main.c ├── ioWFiles │ ├── Makefile │ ├── fileIO.vcxproj │ ├── fileIO.vcxproj.filters │ └── main.c ├── ioWStrings │ ├── Makefile │ ├── main.c │ ├── stringIO.vcxproj │ └── stringIO.vcxproj.filters ├── passcode │ ├── Makefile │ ├── main.c │ ├── passcode.vcxproj │ └── passcode.vcxproj.filters └── stringStats │ ├── Makefile │ ├── main.c │ ├── stringStats.vcxproj │ └── stringStats.vcxproj.filters ├── ch29 ├── Ch29.sln └── sdlProgram │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── media │ └── pupdog.png │ ├── runw │ ├── runx │ ├── sdlProgram.vcxproj │ ├── sdlProgram.vcxproj.filters │ └── sdlProgram.vcxproj.user ├── ch3 ├── Ch3.sln ├── diver │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── diver.vcxproj │ ├── diver.vcxproj.filters │ ├── diver.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── star │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── runw │ ├── runx │ ├── star.vcxproj │ ├── star.vcxproj.filters │ └── star.vcxproj.user └── variables │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── runw │ ├── runx │ ├── variables.vcxproj │ ├── variables.vcxproj.filters │ └── variables.vcxproj.user ├── ch4 ├── Ch4.sln ├── mouse │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── mouse.vcxproj │ ├── mouse.vcxproj.filters │ ├── mouse.vcxproj.user │ ├── runw │ └── runx ├── searchBox │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── media │ │ └── ammonitePuzzle.JPG │ ├── runw │ ├── runx │ ├── searchBox.vcxproj │ ├── searchBox.vcxproj.filters │ └── searchBox.vcxproj.user └── searchGame │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── media │ └── ammonitePuzzle.JPG │ ├── runw │ ├── runx │ ├── searchGame.vcxproj │ ├── searchGame.vcxproj.filters │ └── searchGame.vcxproj.user ├── ch5 ├── Ch5.sln ├── alphabeticalOrder │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── alphabeticalOrder.vcxproj │ ├── alphabeticalOrder.vcxproj.filters │ ├── alphabeticalOrder.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── averaging │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── averaging.vcxproj │ ├── averaging.vcxproj.filters │ ├── averaging.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── input │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── input.vcxproj │ ├── input.vcxproj.filters │ ├── input.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx └── whileLoopsWithSSDL │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── runw │ ├── runx │ ├── whileLoopsWithSSDL.vcxproj │ ├── whileLoopsWithSSDL.vcxproj.filters │ └── whileLoopsWithSSDL.vcxproj.user ├── ch6 ├── Ch6.sln └── circles │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── circles.vcxproj │ ├── circles.vcxproj.filters │ ├── circles.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── ch7 ├── 4-panelComic │ ├── 4-panelComic.vcxproj │ ├── 4-panelComic.vcxproj.filters │ ├── 4-panelComic.vcxproj.user │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── runw │ └── runx ├── Ch7.sln ├── drawCross │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── drawCross.vcxproj │ ├── drawCross.vcxproj.filters │ ├── drawCross.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── globalVars │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── globalVariables.vcxproj │ ├── globalVariables.vcxproj.filters │ ├── globalVariables.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx └── greyscale │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── greyscale.vcxproj │ ├── greyscale.vcxproj.filters │ ├── greyscale.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── ch8 ├── Ch8.sln ├── angles │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── angles.vcxproj │ ├── angles.vcxproj.filters │ ├── angles.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx ├── craps │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── craps.vcxproj │ ├── craps.vcxproj.filters │ ├── craps.vcxproj.user │ ├── main.cpp │ ├── runw │ └── runx └── random │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── main.cpp │ ├── random.vcxproj │ ├── random.vcxproj.filters │ ├── random.vcxproj.user │ ├── runw │ └── runx ├── ch9 ├── Ch9.sln ├── allFixed │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── stars and stripes 3, all fixed.vcxproj │ ├── stars and stripes 3, all fixed.vcxproj.filters │ └── stars and stripes 3, all fixed.vcxproj.user ├── allWrong │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── stars and stripes 1, all wrong.vcxproj │ ├── stars and stripes 1, all wrong.vcxproj.filters │ └── stars and stripes 1, all wrong.vcxproj.user └── stripesFixed │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── main.cpp │ ├── runw │ ├── runx │ ├── stars and stripes 2, stripes fixed.vcxproj │ ├── stars and stripes 2, stripes fixed.vcxproj.filters │ └── stars and stripes 2, stripes fixed.vcxproj.user ├── clean.bat ├── errata.md ├── external ├── README.txt ├── SDL2-MinGW │ ├── SDL2 │ │ ├── BUGS.txt │ │ ├── COPYING.txt │ │ ├── CREDITS.txt │ │ ├── INSTALL.txt │ │ ├── Makefile │ │ ├── README-SDL.txt │ │ ├── README.txt │ │ ├── WhatsNew.txt │ │ ├── docs │ │ │ ├── README-android.md │ │ │ ├── README-cmake.md │ │ │ ├── README-directfb.md │ │ │ ├── README-dynapi.md │ │ │ ├── README-emscripten.md │ │ │ ├── README-gesture.md │ │ │ ├── README-hg.md │ │ │ ├── README-ios.md │ │ │ ├── README-linux.md │ │ │ ├── README-macosx.md │ │ │ ├── README-nacl.md │ │ │ ├── README-pandora.md │ │ │ ├── README-platforms.md │ │ │ ├── README-porting.md │ │ │ ├── README-psp.md │ │ │ ├── README-raspberrypi.md │ │ │ ├── README-touch.md │ │ │ ├── README-wince.md │ │ │ ├── README-windows.md │ │ │ ├── README-winrt.md │ │ │ ├── README.md │ │ │ └── doxyfile │ │ ├── i686-w64-mingw32 │ │ │ ├── bin │ │ │ │ ├── SDL2.dll │ │ │ │ └── sdl2-config │ │ │ ├── include │ │ │ │ └── SDL2 │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_assert.h │ │ │ │ │ ├── SDL_atomic.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_bits.h │ │ │ │ │ ├── SDL_blendmode.h │ │ │ │ │ ├── SDL_clipboard.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ ├── SDL_egl.h │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ ├── SDL_filesystem.h │ │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ │ ├── SDL_gesture.h │ │ │ │ │ ├── SDL_haptic.h │ │ │ │ │ ├── SDL_hints.h │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ ├── SDL_keycode.h │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ ├── SDL_log.h │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ ├── SDL_messagebox.h │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ │ ├── SDL_opengles.h │ │ │ │ │ ├── SDL_opengles2.h │ │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ │ ├── SDL_pixels.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_power.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rect.h │ │ │ │ │ ├── SDL_render.h │ │ │ │ │ ├── SDL_revision.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_scancode.h │ │ │ │ │ ├── SDL_sensor.h │ │ │ │ │ ├── SDL_shape.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_surface.h │ │ │ │ │ ├── SDL_system.h │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ ├── SDL_test.h │ │ │ │ │ ├── SDL_test_assert.h │ │ │ │ │ ├── SDL_test_common.h │ │ │ │ │ ├── SDL_test_compare.h │ │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ │ ├── SDL_test_font.h │ │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ │ ├── SDL_test_harness.h │ │ │ │ │ ├── SDL_test_images.h │ │ │ │ │ ├── SDL_test_log.h │ │ │ │ │ ├── SDL_test_md5.h │ │ │ │ │ ├── SDL_test_memory.h │ │ │ │ │ ├── SDL_test_random.h │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ ├── SDL_touch.h │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ ├── SDL_vulkan.h │ │ │ │ │ ├── begin_code.h │ │ │ │ │ └── close_code.h │ │ │ ├── lib │ │ │ │ ├── cmake │ │ │ │ │ └── SDL2 │ │ │ │ │ │ └── sdl2-config.cmake │ │ │ │ ├── libSDL2.a │ │ │ │ ├── libSDL2.dll.a │ │ │ │ ├── libSDL2.la │ │ │ │ ├── libSDL2_test.a │ │ │ │ ├── libSDL2_test.la │ │ │ │ ├── libSDL2main.a │ │ │ │ ├── libSDL2main.la │ │ │ │ └── pkgconfig │ │ │ │ │ └── sdl2.pc │ │ │ └── share │ │ │ │ └── aclocal │ │ │ │ └── sdl2.m4 │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── acinclude.m4 │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── axis.bmp │ │ │ ├── button.bmp │ │ │ ├── checkkeys.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── controllermap.bmp │ │ │ ├── controllermap.c │ │ │ ├── emscripten │ │ │ │ └── joystick-pre.js │ │ │ ├── gcc-fat.sh │ │ │ ├── icon.bmp │ │ │ ├── loopwave.c │ │ │ ├── loopwavequeue.c │ │ │ ├── moose.dat │ │ │ ├── nacl │ │ │ │ ├── Makefile │ │ │ │ ├── background.js │ │ │ │ ├── common.js │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── picture.xbm │ │ │ ├── relative_mode.markdown │ │ │ ├── sample.bmp │ │ │ ├── sample.wav │ │ │ ├── shapes │ │ │ │ ├── p01_shape24.bmp │ │ │ │ ├── p01_shape32alpha.bmp │ │ │ │ ├── p01_shape8.bmp │ │ │ │ ├── p02_shape24.bmp │ │ │ │ ├── p02_shape32alpha.bmp │ │ │ │ ├── p02_shape8.bmp │ │ │ │ ├── p03_shape24.bmp │ │ │ │ ├── p03_shape8.bmp │ │ │ │ ├── p04_shape1.bmp │ │ │ │ ├── p04_shape24.bmp │ │ │ │ ├── p04_shape32alpha.bmp │ │ │ │ ├── p04_shape8.bmp │ │ │ │ ├── p05_shape8.bmp │ │ │ │ ├── p06_shape1alpha.bmp │ │ │ │ ├── p06_shape24.bmp │ │ │ │ ├── p06_shape32alpha.bmp │ │ │ │ ├── p06_shape8.bmp │ │ │ │ ├── p07_shape24.bmp │ │ │ │ ├── p07_shape32alpha.bmp │ │ │ │ ├── p07_shape8.bmp │ │ │ │ ├── p08_shape24.bmp │ │ │ │ ├── p08_shape32alpha.bmp │ │ │ │ ├── p08_shape8.bmp │ │ │ │ ├── p09_shape24.bmp │ │ │ │ ├── p09_shape32alpha.bmp │ │ │ │ ├── p09_shape8.bmp │ │ │ │ ├── p10_shape1.bmp │ │ │ │ ├── p10_shape24.bmp │ │ │ │ ├── p10_shape32alpha.bmp │ │ │ │ ├── p10_shape8.bmp │ │ │ │ ├── p11_shape24.bmp │ │ │ │ ├── p11_shape32alpha.bmp │ │ │ │ ├── p11_shape8.bmp │ │ │ │ ├── p12_shape24.bmp │ │ │ │ ├── p12_shape8.bmp │ │ │ │ ├── p13_shape24.bmp │ │ │ │ ├── p13_shape32alpha.bmp │ │ │ │ ├── p13_shape8.bmp │ │ │ │ ├── p14_shape24.bmp │ │ │ │ ├── p14_shape8.bmp │ │ │ │ ├── p15_shape24.bmp │ │ │ │ ├── p15_shape32alpha.bmp │ │ │ │ ├── p15_shape8.bmp │ │ │ │ ├── p16_shape1.bmp │ │ │ │ ├── p16_shape24.bmp │ │ │ │ ├── p16_shape8.bmp │ │ │ │ ├── trollface_24.bmp │ │ │ │ └── trollface_32alpha.bmp │ │ │ ├── testatomic.c │ │ │ ├── testaudiocapture.c │ │ │ ├── testaudiohotplug.c │ │ │ ├── testaudioinfo.c │ │ │ ├── testautomation.c │ │ │ ├── testautomation_audio.c │ │ │ ├── testautomation_clipboard.c │ │ │ ├── testautomation_events.c │ │ │ ├── testautomation_hints.c │ │ │ ├── testautomation_keyboard.c │ │ │ ├── testautomation_main.c │ │ │ ├── testautomation_mouse.c │ │ │ ├── testautomation_pixels.c │ │ │ ├── testautomation_platform.c │ │ │ ├── testautomation_rect.c │ │ │ ├── testautomation_render.c │ │ │ ├── testautomation_rwops.c │ │ │ ├── testautomation_sdltest.c │ │ │ ├── testautomation_stdlib.c │ │ │ ├── testautomation_suites.h │ │ │ ├── testautomation_surface.c │ │ │ ├── testautomation_syswm.c │ │ │ ├── testautomation_timer.c │ │ │ ├── testautomation_video.c │ │ │ ├── testbounds.c │ │ │ ├── testcustomcursor.c │ │ │ ├── testdisplayinfo.c │ │ │ ├── testdraw2.c │ │ │ ├── testdrawchessboard.c │ │ │ ├── testdropfile.c │ │ │ ├── testerror.c │ │ │ ├── testfile.c │ │ │ ├── testfilesystem.c │ │ │ ├── testgamecontroller.c │ │ │ ├── testgesture.c │ │ │ ├── testgl2.c │ │ │ ├── testgles.c │ │ │ ├── testgles2.c │ │ │ ├── testhaptic.c │ │ │ ├── testhittesting.c │ │ │ ├── testhotplug.c │ │ │ ├── testiconv.c │ │ │ ├── testime.c │ │ │ ├── testintersections.c │ │ │ ├── testjoystick.c │ │ │ ├── testkeys.c │ │ │ ├── testloadso.c │ │ │ ├── testlock.c │ │ │ ├── testmessage.c │ │ │ ├── testmultiaudio.c │ │ │ ├── testnative.c │ │ │ ├── testnative.h │ │ │ ├── testnativecocoa.m │ │ │ ├── testnativew32.c │ │ │ ├── testnativex11.c │ │ │ ├── testoverlay2.c │ │ │ ├── testplatform.c │ │ │ ├── testpower.c │ │ │ ├── testqsort.c │ │ │ ├── testrelative.c │ │ │ ├── testrendercopyex.c │ │ │ ├── testrendertarget.c │ │ │ ├── testresample.c │ │ │ ├── testrumble.c │ │ │ ├── testscale.c │ │ │ ├── testsem.c │ │ │ ├── testsensor.c │ │ │ ├── testshader.c │ │ │ ├── testshape.c │ │ │ ├── testsprite2.c │ │ │ ├── testspriteminimal.c │ │ │ ├── teststreaming.c │ │ │ ├── testthread.c │ │ │ ├── testtimer.c │ │ │ ├── testver.c │ │ │ ├── testviewport.c │ │ │ ├── testvulkan.c │ │ │ ├── testwm2.c │ │ │ ├── testyuv.bmp │ │ │ ├── testyuv.c │ │ │ ├── testyuv_cvt.c │ │ │ ├── testyuv_cvt.h │ │ │ ├── torturethread.c │ │ │ └── utf8.txt │ │ └── x86_64-w64-mingw32 │ │ │ ├── bin │ │ │ ├── SDL2.dll │ │ │ └── sdl2-config │ │ │ ├── include │ │ │ └── SDL2 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ ├── lib │ │ │ ├── cmake │ │ │ │ └── SDL2 │ │ │ │ │ └── sdl2-config.cmake │ │ │ ├── libSDL2.a │ │ │ ├── libSDL2.dll.a │ │ │ ├── libSDL2.la │ │ │ ├── libSDL2_test.a │ │ │ ├── libSDL2_test.la │ │ │ ├── libSDL2main.a │ │ │ ├── libSDL2main.la │ │ │ └── pkgconfig │ │ │ │ └── sdl2.pc │ │ │ └── share │ │ │ └── aclocal │ │ │ └── sdl2.m4 │ ├── SDL2_image │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── i686-w64-mingw32 │ │ │ ├── bin │ │ │ │ ├── LICENSE.jpeg.txt │ │ │ │ ├── LICENSE.png.txt │ │ │ │ ├── LICENSE.tiff.txt │ │ │ │ ├── LICENSE.webp.txt │ │ │ │ ├── LICENSE.zlib.txt │ │ │ │ ├── SDL2_image.dll │ │ │ │ ├── libjpeg-9.dll │ │ │ │ ├── libpng16-16.dll │ │ │ │ ├── libtiff-5.dll │ │ │ │ ├── libwebp-7.dll │ │ │ │ └── zlib1.dll │ │ │ ├── include │ │ │ │ └── SDL2 │ │ │ │ │ └── SDL_image.h │ │ │ └── lib │ │ │ │ ├── libSDL2_image.a │ │ │ │ ├── libSDL2_image.dll.a │ │ │ │ ├── libSDL2_image.la │ │ │ │ └── pkgconfig │ │ │ │ └── SDL2_image.pc │ │ └── x86_64-w64-mingw32 │ │ │ ├── bin │ │ │ ├── LICENSE.jpeg.txt │ │ │ ├── LICENSE.png.txt │ │ │ ├── LICENSE.tiff.txt │ │ │ ├── LICENSE.webp.txt │ │ │ ├── LICENSE.zlib.txt │ │ │ ├── SDL2_image.dll │ │ │ ├── libjpeg-9.dll │ │ │ ├── libpng16-16.dll │ │ │ ├── libtiff-5.dll │ │ │ ├── libwebp-7.dll │ │ │ └── zlib1.dll │ │ │ ├── include │ │ │ └── SDL2 │ │ │ │ └── SDL_image.h │ │ │ └── lib │ │ │ ├── libSDL2_image.a │ │ │ ├── libSDL2_image.dll.a │ │ │ ├── libSDL2_image.la │ │ │ └── pkgconfig │ │ │ └── SDL2_image.pc │ ├── SDL2_mixer │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── i686-w64-mingw32 │ │ │ ├── bin │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ ├── LICENSE.modplug.txt │ │ │ │ ├── LICENSE.mpg123.txt │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ ├── LICENSE.opus.txt │ │ │ │ ├── LICENSE.opusfile.txt │ │ │ │ ├── SDL2_mixer.dll │ │ │ │ ├── libFLAC-8.dll │ │ │ │ ├── libmodplug-1.dll │ │ │ │ ├── libmpg123-0.dll │ │ │ │ ├── libogg-0.dll │ │ │ │ ├── libopus-0.dll │ │ │ │ ├── libopusfile-0.dll │ │ │ │ ├── libvorbis-0.dll │ │ │ │ └── libvorbisfile-3.dll │ │ │ ├── include │ │ │ │ └── SDL2 │ │ │ │ │ └── SDL_mixer.h │ │ │ └── lib │ │ │ │ ├── libSDL2_mixer.a │ │ │ │ ├── libSDL2_mixer.dll.a │ │ │ │ ├── libSDL2_mixer.la │ │ │ │ └── pkgconfig │ │ │ │ └── SDL2_mixer.pc │ │ └── x86_64-w64-mingw32 │ │ │ ├── bin │ │ │ ├── LICENSE.FLAC.txt │ │ │ ├── LICENSE.modplug.txt │ │ │ ├── LICENSE.mpg123.txt │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ ├── LICENSE.opus.txt │ │ │ ├── LICENSE.opusfile.txt │ │ │ ├── SDL2_mixer.dll │ │ │ ├── libFLAC-8.dll │ │ │ ├── libmodplug-1.dll │ │ │ ├── libmpg123-0.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libopus-0.dll │ │ │ ├── libopusfile-0.dll │ │ │ ├── libvorbis-0.dll │ │ │ └── libvorbisfile-3.dll │ │ │ ├── include │ │ │ └── SDL2 │ │ │ │ └── SDL_mixer.h │ │ │ └── lib │ │ │ ├── libSDL2_mixer.a │ │ │ ├── libSDL2_mixer.dll.a │ │ │ ├── libSDL2_mixer.la │ │ │ └── pkgconfig │ │ │ └── SDL2_mixer.pc │ └── SDL2_ttf │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── i686-w64-mingw32 │ │ ├── bin │ │ │ ├── LICENSE.freetype.txt │ │ │ ├── LICENSE.zlib.txt │ │ │ ├── SDL2_ttf.dll │ │ │ ├── libfreetype-6.dll │ │ │ └── zlib1.dll │ │ ├── include │ │ │ └── SDL2 │ │ │ │ └── SDL_ttf.h │ │ └── lib │ │ │ ├── libSDL2_ttf.a │ │ │ ├── libSDL2_ttf.dll.a │ │ │ ├── libSDL2_ttf.la │ │ │ └── pkgconfig │ │ │ └── SDL2_ttf.pc │ │ └── x86_64-w64-mingw32 │ │ ├── bin │ │ ├── LICENSE.freetype.txt │ │ ├── LICENSE.zlib.txt │ │ ├── SDL2_ttf.dll │ │ ├── libfreetype-6.dll │ │ └── zlib1.dll │ │ ├── include │ │ └── SDL2 │ │ │ └── SDL_ttf.h │ │ └── lib │ │ ├── libSDL2_ttf.a │ │ ├── libSDL2_ttf.dll.a │ │ ├── libSDL2_ttf.la │ │ └── pkgconfig │ │ └── SDL2_ttf.pc ├── SDL2 │ ├── BUGS.txt │ ├── CHANGES.SDL2_image.txt │ ├── CHANGES.SDL2_mixer.txt │ ├── CHANGES.SDL2_ttf.txt │ ├── COPYING.SDL2_image.txt │ ├── COPYING.SDL2_mixer.txt │ ├── COPYING.SDL2_ttf.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.SDL2_image.txt │ ├── README.SDL2_mixer.txt │ ├── README.SDL2_ttf.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mixer.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_ttf.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ ├── x64 │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.freetype.txt │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.mpg123.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.fromSDL2_imageFolder.txt │ │ ├── LICENSE.zlib.fromSDL2_ttfFolder.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── SDL2_mixer.dll │ │ ├── SDL2_mixer.lib │ │ ├── SDL2_ttf.dll │ │ ├── SDL2_ttf.lib │ │ ├── SDL2main.lib │ │ ├── SDL2test.lib │ │ ├── libFLAC-8.dll │ │ ├── libfreetype-6.dll │ │ ├── libjpeg-9.dll │ │ ├── libmodplug-1.dll │ │ ├── libmpg123-0.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisfile-3.dll │ │ ├── libwebp-7.dll │ │ └── zlib1.dll │ │ └── x86 │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.freetype.txt │ │ ├── LICENSE.jpeg.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.mpg123.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── LICENSE.png.txt │ │ ├── LICENSE.tiff.txt │ │ ├── LICENSE.webp.txt │ │ ├── LICENSE.zlib.fromSDL2_imageFolder.txt │ │ ├── LICENSE.zlib.fromSDL2_ttfFolder.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_image.dll │ │ ├── SDL2_image.lib │ │ ├── SDL2_mixer.dll │ │ ├── SDL2_mixer.lib │ │ ├── SDL2_ttf.dll │ │ ├── SDL2_ttf.lib │ │ ├── SDL2main.lib │ │ ├── SDL2test.lib │ │ ├── libFLAC-8.dll │ │ ├── libfreetype-6.dll │ │ ├── libjpeg-9.dll │ │ ├── libmodplug-1.dll │ │ ├── libmpg123-0.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libpng16-16.dll │ │ ├── libtiff-5.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisfile-3.dll │ │ ├── libwebp-7.dll │ │ └── zlib1.dll └── SSDL │ ├── COPYING.SSDL.txt │ ├── MinGW │ ├── Makefile │ ├── bin │ │ └── static │ │ │ └── Makefile │ ├── libssdl.a │ ├── readme.txt │ └── runw │ ├── README.SSDL.txt │ ├── VS │ ├── SSDL.sln │ ├── SSDL.vcxproj │ ├── SSDL.vcxproj.filters │ ├── SSDL.vcxproj.user │ ├── test.vcxproj │ ├── test.vcxproj.user │ ├── testWithoutLibrary.vcxproj │ └── testWithoutLibrary.vcxproj.filters │ ├── debugging notes.txt │ ├── include │ ├── SSDL.h │ ├── SSDL_color.h │ ├── SSDL_display.h │ ├── SSDL_draw.h │ ├── SSDL_exception.h │ ├── SSDL_font.h │ ├── SSDL_image.h │ ├── SSDL_io.h │ ├── SSDL_sound.h │ ├── SSDL_sprite.h │ ├── SSDL_stream.h │ └── SSDL_timer.h │ ├── libvs │ ├── Win32 │ │ ├── SSDL.pdb │ │ ├── SSDL_Debug.lib │ │ └── SSDL_Release.lib │ └── x64 │ │ ├── SSDL.pdb │ │ ├── SSDL_Debug.lib │ │ └── SSDL_Release.lib │ ├── src │ ├── SSDL_color.cpp │ ├── SSDL_display.cpp │ ├── SSDL_draw.cpp │ ├── SSDL_exception.cpp │ ├── SSDL_font.cpp │ ├── SSDL_image.cpp │ ├── SSDL_io.cpp │ ├── SSDL_sound.cpp │ ├── SSDL_sprite.cpp │ ├── SSDL_stream.cpp │ └── SSDL_timer.cpp │ ├── test │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README.txt │ ├── dddx │ ├── gdbw │ ├── gdbx │ ├── media │ │ ├── 159509__mistersherlock__halloween-graveyd-short.mp3 │ │ ├── 326813__mrose6__echoed-screams-short.wav │ │ ├── 342153__robcro6010__circus-theme-short - Copy.wav │ │ ├── 342153__robcro6010__circus-theme-short.wav │ │ ├── 388284__matypresidente__water-drop-short.wav │ │ ├── 457741__osiruswaltz__wall-bump-1.wav │ │ ├── Sinister-Fonts_Werewolf-Moon │ │ │ ├── Werewolf Moon Font Info and Read Me - Sinister Fonts.txt │ │ │ ├── Werewolf Moon.otf │ │ │ ├── Werewolf Moon.ttf │ │ │ └── Werewolf-Moon-Font-by-Chad-Savage_-_SinisterFonts.jpg │ │ ├── candy.png │ │ ├── goodPumpkin.png │ │ ├── haunted-house.jpg │ │ ├── jack-o-lantern.png │ │ ├── sadPumpkin.png │ │ └── yum.png │ ├── runw │ ├── runx │ ├── testSSDL.cpp │ ├── trickOrTreat.vcxproj │ ├── trickOrTreat.vcxproj.filters │ └── trickOrTreat.vcxproj.user │ ├── unix │ ├── Makefile │ ├── bin │ │ ├── shared │ │ │ └── Makefile │ │ └── static │ │ │ └── Makefile │ ├── libssdl.so │ ├── readme.txt │ └── runx │ └── unixTestWoLib │ ├── Makefile │ ├── bin │ └── shared │ │ └── Makefile │ ├── dddx │ ├── gdbx │ ├── readme.txt │ └── runx └── newWork ├── HowToMakeAnSSDLProject.txt ├── basicSSDLProject ├── Makefile.mingw ├── Makefile.unix ├── README.txt ├── SSDL_Project.sln ├── SSDL_Project.vcxproj ├── SSDL_Project.vcxproj.filters ├── SSDL_Project.vcxproj.user ├── dddx ├── gdbw ├── gdbx ├── main.cpp ├── runw └── runx ├── basicSSDLProjectForVS2019 ├── SSDL_Project.sln ├── SSDL_Project.vcxproj ├── SSDL_Project.vcxproj.filters ├── SSDL_Project.vcxproj.user └── main.cpp └── basicStandardProject ├── Makefile ├── basicStandardProject.sln ├── basicStandardProject.vcxproj ├── basicStandardProject.vcxproj.filters └── main.cpp /9781484251867.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/9781484251867.jpg -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/Contributing.md -------------------------------------------------------------------------------- /GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/GettingStarted.txt -------------------------------------------------------------------------------- /HOW__TO_CONTACT_AUTHOR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/HOW__TO_CONTACT_AUTHOR.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/README.md -------------------------------------------------------------------------------- /ch1/Ch1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/Ch1.sln -------------------------------------------------------------------------------- /ch1/bugsHead/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/Makefile.mingw -------------------------------------------------------------------------------- /ch1/bugsHead/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/Makefile.unix -------------------------------------------------------------------------------- /ch1/bugsHead/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/README.txt -------------------------------------------------------------------------------- /ch1/bugsHead/bugsHead.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/bugsHead.vcxproj -------------------------------------------------------------------------------- /ch1/bugsHead/bugsHead.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/bugsHead.vcxproj.user -------------------------------------------------------------------------------- /ch1/bugsHead/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/main.cpp -------------------------------------------------------------------------------- /ch1/bugsHead/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/runw -------------------------------------------------------------------------------- /ch1/bugsHead/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/bugsHead/runx -------------------------------------------------------------------------------- /ch1/colorSquares/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/Makefile.mingw -------------------------------------------------------------------------------- /ch1/colorSquares/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/Makefile.unix -------------------------------------------------------------------------------- /ch1/colorSquares/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/README.txt -------------------------------------------------------------------------------- /ch1/colorSquares/colors.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/colors.vcxproj -------------------------------------------------------------------------------- /ch1/colorSquares/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/main.cpp -------------------------------------------------------------------------------- /ch1/colorSquares/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/runw -------------------------------------------------------------------------------- /ch1/colorSquares/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquares/runx -------------------------------------------------------------------------------- /ch1/colorSquaresWithLabels/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquaresWithLabels/main.cpp -------------------------------------------------------------------------------- /ch1/colorSquaresWithLabels/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquaresWithLabels/runw -------------------------------------------------------------------------------- /ch1/colorSquaresWithLabels/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/colorSquaresWithLabels/runx -------------------------------------------------------------------------------- /ch1/drawDot/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/Makefile.mingw -------------------------------------------------------------------------------- /ch1/drawDot/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/Makefile.unix -------------------------------------------------------------------------------- /ch1/drawDot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/README.txt -------------------------------------------------------------------------------- /ch1/drawDot/drawDot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/drawDot.vcxproj -------------------------------------------------------------------------------- /ch1/drawDot/drawDot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/drawDot.vcxproj.filters -------------------------------------------------------------------------------- /ch1/drawDot/drawDot.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/drawDot.vcxproj.user -------------------------------------------------------------------------------- /ch1/drawDot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/main.cpp -------------------------------------------------------------------------------- /ch1/drawDot/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/runw -------------------------------------------------------------------------------- /ch1/drawDot/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawDot/runx -------------------------------------------------------------------------------- /ch1/drawingPad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/drawingPad.pdf -------------------------------------------------------------------------------- /ch1/hello/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/Makefile.mingw -------------------------------------------------------------------------------- /ch1/hello/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/Makefile.unix -------------------------------------------------------------------------------- /ch1/hello/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/README.txt -------------------------------------------------------------------------------- /ch1/hello/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/hello.vcxproj -------------------------------------------------------------------------------- /ch1/hello/hello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/hello.vcxproj.filters -------------------------------------------------------------------------------- /ch1/hello/hello.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/hello.vcxproj.user -------------------------------------------------------------------------------- /ch1/hello/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/main.cpp -------------------------------------------------------------------------------- /ch1/hello/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/runw -------------------------------------------------------------------------------- /ch1/hello/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/hello/runx -------------------------------------------------------------------------------- /ch1/quotation/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/Makefile.mingw -------------------------------------------------------------------------------- /ch1/quotation/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/Makefile.unix -------------------------------------------------------------------------------- /ch1/quotation/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/README.txt -------------------------------------------------------------------------------- /ch1/quotation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/main.cpp -------------------------------------------------------------------------------- /ch1/quotation/quotation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/quotation.vcxproj -------------------------------------------------------------------------------- /ch1/quotation/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/runw -------------------------------------------------------------------------------- /ch1/quotation/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch1/quotation/runx -------------------------------------------------------------------------------- /ch10/Ch10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/Ch10.sln -------------------------------------------------------------------------------- /ch10/enumClass/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/Makefile.mingw -------------------------------------------------------------------------------- /ch10/enumClass/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/Makefile.unix -------------------------------------------------------------------------------- /ch10/enumClass/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/README.txt -------------------------------------------------------------------------------- /ch10/enumClass/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/dddx -------------------------------------------------------------------------------- /ch10/enumClass/enumClass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/enumClass.vcxproj -------------------------------------------------------------------------------- /ch10/enumClass/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/gdbw -------------------------------------------------------------------------------- /ch10/enumClass/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/gdbx -------------------------------------------------------------------------------- /ch10/enumClass/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/main.cpp -------------------------------------------------------------------------------- /ch10/enumClass/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/runw -------------------------------------------------------------------------------- /ch10/enumClass/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enumClass/runx -------------------------------------------------------------------------------- /ch10/enums/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/Makefile.mingw -------------------------------------------------------------------------------- /ch10/enums/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/Makefile.unix -------------------------------------------------------------------------------- /ch10/enums/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/README.txt -------------------------------------------------------------------------------- /ch10/enums/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/dddx -------------------------------------------------------------------------------- /ch10/enums/enums.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/enums.vcxproj -------------------------------------------------------------------------------- /ch10/enums/enums.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/enums.vcxproj.filters -------------------------------------------------------------------------------- /ch10/enums/enums.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/enums.vcxproj.user -------------------------------------------------------------------------------- /ch10/enums/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/gdbw -------------------------------------------------------------------------------- /ch10/enums/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/gdbx -------------------------------------------------------------------------------- /ch10/enums/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/main.cpp -------------------------------------------------------------------------------- /ch10/enums/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/runw -------------------------------------------------------------------------------- /ch10/enums/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/enums/runx -------------------------------------------------------------------------------- /ch10/lowestTemp/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/Makefile.mingw -------------------------------------------------------------------------------- /ch10/lowestTemp/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/Makefile.unix -------------------------------------------------------------------------------- /ch10/lowestTemp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/README.txt -------------------------------------------------------------------------------- /ch10/lowestTemp/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/dddx -------------------------------------------------------------------------------- /ch10/lowestTemp/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/gdbw -------------------------------------------------------------------------------- /ch10/lowestTemp/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/gdbx -------------------------------------------------------------------------------- /ch10/lowestTemp/lowestTemp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/lowestTemp.vcxproj -------------------------------------------------------------------------------- /ch10/lowestTemp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/main.cpp -------------------------------------------------------------------------------- /ch10/lowestTemp/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/runw -------------------------------------------------------------------------------- /ch10/lowestTemp/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/lowestTemp/runx -------------------------------------------------------------------------------- /ch10/readInPrintOut/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/Makefile.mingw -------------------------------------------------------------------------------- /ch10/readInPrintOut/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/Makefile.unix -------------------------------------------------------------------------------- /ch10/readInPrintOut/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/README.txt -------------------------------------------------------------------------------- /ch10/readInPrintOut/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/dddx -------------------------------------------------------------------------------- /ch10/readInPrintOut/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/gdbw -------------------------------------------------------------------------------- /ch10/readInPrintOut/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/gdbx -------------------------------------------------------------------------------- /ch10/readInPrintOut/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/main.cpp -------------------------------------------------------------------------------- /ch10/readInPrintOut/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/runw -------------------------------------------------------------------------------- /ch10/readInPrintOut/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/readInPrintOut/runx -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/Makefile -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/Makefile.mingw -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/Makefile.unix -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/README.txt -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/dddx -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/gdbw -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/gdbx -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/main.cpp -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/media/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/media/O.png -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/media/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/media/X.png -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/runw -------------------------------------------------------------------------------- /ch10/ticTacToeBoard/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch10/ticTacToeBoard/runx -------------------------------------------------------------------------------- /ch11/Ch11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/Ch11.sln -------------------------------------------------------------------------------- /ch11/bouncingBall/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/Makefile.mingw -------------------------------------------------------------------------------- /ch11/bouncingBall/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/Makefile.unix -------------------------------------------------------------------------------- /ch11/bouncingBall/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/README.txt -------------------------------------------------------------------------------- /ch11/bouncingBall/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/dddx -------------------------------------------------------------------------------- /ch11/bouncingBall/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/gdbw -------------------------------------------------------------------------------- /ch11/bouncingBall/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/gdbx -------------------------------------------------------------------------------- /ch11/bouncingBall/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/main.cpp -------------------------------------------------------------------------------- /ch11/bouncingBall/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/runw -------------------------------------------------------------------------------- /ch11/bouncingBall/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBall/runx -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/README.txt -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/dddx -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/gdbw -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/gdbx -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/main.cpp -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/runw -------------------------------------------------------------------------------- /ch11/bouncingBallsArray/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/bouncingBallsArray/runx -------------------------------------------------------------------------------- /ch11/spritefish1/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/Makefile.mingw -------------------------------------------------------------------------------- /ch11/spritefish1/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/Makefile.unix -------------------------------------------------------------------------------- /ch11/spritefish1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/README.txt -------------------------------------------------------------------------------- /ch11/spritefish1/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/dddx -------------------------------------------------------------------------------- /ch11/spritefish1/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/gdbw -------------------------------------------------------------------------------- /ch11/spritefish1/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/gdbx -------------------------------------------------------------------------------- /ch11/spritefish1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/main.cpp -------------------------------------------------------------------------------- /ch11/spritefish1/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/runw -------------------------------------------------------------------------------- /ch11/spritefish1/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish1/runx -------------------------------------------------------------------------------- /ch11/spritefish2/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/Makefile.mingw -------------------------------------------------------------------------------- /ch11/spritefish2/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/Makefile.unix -------------------------------------------------------------------------------- /ch11/spritefish2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/README.txt -------------------------------------------------------------------------------- /ch11/spritefish2/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/dddx -------------------------------------------------------------------------------- /ch11/spritefish2/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/gdbw -------------------------------------------------------------------------------- /ch11/spritefish2/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/gdbx -------------------------------------------------------------------------------- /ch11/spritefish2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/main.cpp -------------------------------------------------------------------------------- /ch11/spritefish2/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/runw -------------------------------------------------------------------------------- /ch11/spritefish2/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/spritefish2/runx -------------------------------------------------------------------------------- /ch11/staircase/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/Makefile.mingw -------------------------------------------------------------------------------- /ch11/staircase/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/Makefile.unix -------------------------------------------------------------------------------- /ch11/staircase/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/README.txt -------------------------------------------------------------------------------- /ch11/staircase/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/dddx -------------------------------------------------------------------------------- /ch11/staircase/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/gdbw -------------------------------------------------------------------------------- /ch11/staircase/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/gdbx -------------------------------------------------------------------------------- /ch11/staircase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/main.cpp -------------------------------------------------------------------------------- /ch11/staircase/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/runw -------------------------------------------------------------------------------- /ch11/staircase/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/runx -------------------------------------------------------------------------------- /ch11/staircase/staircase.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch11/staircase/staircase.vcxproj -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/README.txt -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/dddx -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/gdbw -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/gdbx -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/main.cpp -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/runw -------------------------------------------------------------------------------- /ch12/aliensBuzzOurWorld/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/aliensBuzzOurWorld/runx -------------------------------------------------------------------------------- /ch12/ch12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/ch12.sln -------------------------------------------------------------------------------- /ch12/keystate/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/Makefile.mingw -------------------------------------------------------------------------------- /ch12/keystate/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/Makefile.unix -------------------------------------------------------------------------------- /ch12/keystate/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/README.txt -------------------------------------------------------------------------------- /ch12/keystate/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/dddx -------------------------------------------------------------------------------- /ch12/keystate/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/gdbw -------------------------------------------------------------------------------- /ch12/keystate/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/gdbx -------------------------------------------------------------------------------- /ch12/keystate/keystate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/keystate.vcxproj -------------------------------------------------------------------------------- /ch12/keystate/keystate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/keystate.vcxproj.user -------------------------------------------------------------------------------- /ch12/keystate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/main.cpp -------------------------------------------------------------------------------- /ch12/keystate/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/runw -------------------------------------------------------------------------------- /ch12/keystate/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/keystate/runx -------------------------------------------------------------------------------- /ch12/splat/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/Makefile.mingw -------------------------------------------------------------------------------- /ch12/splat/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/Makefile.unix -------------------------------------------------------------------------------- /ch12/splat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/README.txt -------------------------------------------------------------------------------- /ch12/splat/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/dddx -------------------------------------------------------------------------------- /ch12/splat/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/gdbw -------------------------------------------------------------------------------- /ch12/splat/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/gdbx -------------------------------------------------------------------------------- /ch12/splat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/main.cpp -------------------------------------------------------------------------------- /ch12/splat/media/splat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/media/splat.png -------------------------------------------------------------------------------- /ch12/splat/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/runw -------------------------------------------------------------------------------- /ch12/splat/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/runx -------------------------------------------------------------------------------- /ch12/splat/splat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/splat.vcxproj -------------------------------------------------------------------------------- /ch12/splat/splat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/splat.vcxproj.filters -------------------------------------------------------------------------------- /ch12/splat/splat.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/splat/splat.vcxproj.user -------------------------------------------------------------------------------- /ch12/trickortreat/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/Makefile.mingw -------------------------------------------------------------------------------- /ch12/trickortreat/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/Makefile.unix -------------------------------------------------------------------------------- /ch12/trickortreat/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/README.txt -------------------------------------------------------------------------------- /ch12/trickortreat/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/dddx -------------------------------------------------------------------------------- /ch12/trickortreat/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/gdbw -------------------------------------------------------------------------------- /ch12/trickortreat/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/gdbx -------------------------------------------------------------------------------- /ch12/trickortreat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/main.cpp -------------------------------------------------------------------------------- /ch12/trickortreat/media/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/media/candy.png -------------------------------------------------------------------------------- /ch12/trickortreat/media/yum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/media/yum.png -------------------------------------------------------------------------------- /ch12/trickortreat/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/runw -------------------------------------------------------------------------------- /ch12/trickortreat/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch12/trickortreat/runx -------------------------------------------------------------------------------- /ch13/average/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/average/Makefile -------------------------------------------------------------------------------- /ch13/average/average.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/average/average.vcxproj -------------------------------------------------------------------------------- /ch13/average/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/average/main.cpp -------------------------------------------------------------------------------- /ch13/capitalizeFile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/capitalizeFile/Makefile -------------------------------------------------------------------------------- /ch13/capitalizeFile/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/capitalizeFile/input.txt -------------------------------------------------------------------------------- /ch13/capitalizeFile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/capitalizeFile/main.cpp -------------------------------------------------------------------------------- /ch13/ch13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/ch13.sln -------------------------------------------------------------------------------- /ch13/etaoinShrdlu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/etaoinShrdlu/Makefile -------------------------------------------------------------------------------- /ch13/etaoinShrdlu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/etaoinShrdlu/main.cpp -------------------------------------------------------------------------------- /ch13/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/hello/Makefile -------------------------------------------------------------------------------- /ch13/hello/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/hello/hello.vcxproj -------------------------------------------------------------------------------- /ch13/hello/hello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/hello/hello.vcxproj.filters -------------------------------------------------------------------------------- /ch13/hello/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/hello/main.cpp -------------------------------------------------------------------------------- /ch13/killerRobots/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/killerRobots/Makefile -------------------------------------------------------------------------------- /ch13/killerRobots/level1.txt: -------------------------------------------------------------------------------- 1 | 5 3 2 | 10 10 3 | 4 -7 4 | -------------------------------------------------------------------------------- /ch13/killerRobots/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/killerRobots/main.cpp -------------------------------------------------------------------------------- /ch13/killerRobotsUsingCin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/killerRobotsUsingCin/Makefile -------------------------------------------------------------------------------- /ch13/killerRobotsUsingCin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/killerRobotsUsingCin/main.cpp -------------------------------------------------------------------------------- /ch13/temperature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch13/temperature.txt -------------------------------------------------------------------------------- /ch14/ch14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/ch14.sln -------------------------------------------------------------------------------- /ch14/charArrays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/charArrays/Makefile -------------------------------------------------------------------------------- /ch14/charArrays/charArrays.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/charArrays/charArrays.vcxproj -------------------------------------------------------------------------------- /ch14/charArrays/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/charArrays/main.cpp -------------------------------------------------------------------------------- /ch14/passcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/passcode/Makefile -------------------------------------------------------------------------------- /ch14/passcode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/passcode/main.cpp -------------------------------------------------------------------------------- /ch14/passcode/passcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/passcode/passcode.vcxproj -------------------------------------------------------------------------------- /ch14/strcpyVersions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/strcpyVersions/Makefile -------------------------------------------------------------------------------- /ch14/strcpyVersions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch14/strcpyVersions/main.cpp -------------------------------------------------------------------------------- /ch15/ch15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/ch15.sln -------------------------------------------------------------------------------- /ch15/date--first/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--first/Makefile -------------------------------------------------------------------------------- /ch15/date--first/date.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--first/date.vcxproj -------------------------------------------------------------------------------- /ch15/date--first/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--first/main.cpp -------------------------------------------------------------------------------- /ch15/date--last/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--last/Makefile -------------------------------------------------------------------------------- /ch15/date--last/date--last.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--last/date--last.vcxproj -------------------------------------------------------------------------------- /ch15/date--last/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch15/date--last/main.cpp -------------------------------------------------------------------------------- /ch16/car/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/Makefile -------------------------------------------------------------------------------- /ch16/car/car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/car.cpp -------------------------------------------------------------------------------- /ch16/car/car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/car.h -------------------------------------------------------------------------------- /ch16/car/car.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/car.vcxproj -------------------------------------------------------------------------------- /ch16/car/car.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/car.vcxproj.filters -------------------------------------------------------------------------------- /ch16/car/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/car/main.cpp -------------------------------------------------------------------------------- /ch16/ch16.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/ch16.sln -------------------------------------------------------------------------------- /ch16/circularIncludes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/circularIncludes/Makefile -------------------------------------------------------------------------------- /ch16/circularIncludes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/circularIncludes/main.cpp -------------------------------------------------------------------------------- /ch16/circularIncludes/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/circularIncludes/stopwatch.h -------------------------------------------------------------------------------- /ch16/circularIncludes/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/circularIncludes/time.h -------------------------------------------------------------------------------- /ch16/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/Makefile -------------------------------------------------------------------------------- /ch16/date/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/date.cpp -------------------------------------------------------------------------------- /ch16/date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/date.h -------------------------------------------------------------------------------- /ch16/date/date.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/date.vcxproj -------------------------------------------------------------------------------- /ch16/date/date.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/date.vcxproj.filters -------------------------------------------------------------------------------- /ch16/date/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/date/main.cpp -------------------------------------------------------------------------------- /ch16/makefilesAndClean/cleanup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch16/makefilesAndClean/cleanup.bat -------------------------------------------------------------------------------- /ch16/makefilesAndClean/main.cpp: -------------------------------------------------------------------------------- 1 | #include "myclass.h" 2 | 3 | int main () 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /ch16/makefilesAndClean/myclass.cpp: -------------------------------------------------------------------------------- 1 | #include "myclass.h" 2 | -------------------------------------------------------------------------------- /ch16/makefilesAndClean/myclass.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ch17/ch17.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/ch17.sln -------------------------------------------------------------------------------- /ch17/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/Makefile -------------------------------------------------------------------------------- /ch17/string/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/main.cpp -------------------------------------------------------------------------------- /ch17/string/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/string.cpp -------------------------------------------------------------------------------- /ch17/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/string.h -------------------------------------------------------------------------------- /ch17/string/string.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/string.vcxproj -------------------------------------------------------------------------------- /ch17/string/string.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/string.vcxproj.filters -------------------------------------------------------------------------------- /ch17/string/string.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch17/string/string.vcxproj.user -------------------------------------------------------------------------------- /ch18/ch18.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/ch18.sln -------------------------------------------------------------------------------- /ch18/factorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/factorial/Makefile -------------------------------------------------------------------------------- /ch18/factorial/factorial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/factorial/factorial.vcxproj -------------------------------------------------------------------------------- /ch18/factorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/factorial/main.cpp -------------------------------------------------------------------------------- /ch18/stack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/stack/Makefile -------------------------------------------------------------------------------- /ch18/stack/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/stack/stack.h -------------------------------------------------------------------------------- /ch18/stack/stack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/stack/stack.vcxproj -------------------------------------------------------------------------------- /ch18/stack/stack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/stack/stack.vcxproj.filters -------------------------------------------------------------------------------- /ch18/stack/testStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/stack/testStack.cpp -------------------------------------------------------------------------------- /ch18/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/Makefile -------------------------------------------------------------------------------- /ch18/string/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/main.cpp -------------------------------------------------------------------------------- /ch18/string/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/string.cpp -------------------------------------------------------------------------------- /ch18/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/string.h -------------------------------------------------------------------------------- /ch18/string/string.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/string.vcxproj -------------------------------------------------------------------------------- /ch18/string/string.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch18/string/string.vcxproj.filters -------------------------------------------------------------------------------- /ch19/cardgames/README-g++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/README-g++.txt -------------------------------------------------------------------------------- /ch19/cardgames/montana.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/montana.vcxproj -------------------------------------------------------------------------------- /ch19/cardgames/source/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/Makefile.unix -------------------------------------------------------------------------------- /ch19/cardgames/source/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/card.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/card.h -------------------------------------------------------------------------------- /ch19/cardgames/source/cardgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/cardgroup.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/cardgroup.h -------------------------------------------------------------------------------- /ch19/cardgames/source/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/cell.h -------------------------------------------------------------------------------- /ch19/cardgames/source/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/deck.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/deck.h -------------------------------------------------------------------------------- /ch19/cardgames/source/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/gridLoc.h -------------------------------------------------------------------------------- /ch19/cardgames/source/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/io.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/io.h -------------------------------------------------------------------------------- /ch19/cardgames/source/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/montana.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/montana.h -------------------------------------------------------------------------------- /ch19/cardgames/source/myProgram.cpp: -------------------------------------------------------------------------------- 1 | int main () { return 0; } 2 | -------------------------------------------------------------------------------- /ch19/cardgames/source/testCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/testCard.cpp -------------------------------------------------------------------------------- /ch19/cardgames/source/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/source/waste.h -------------------------------------------------------------------------------- /ch19/cardgames/testCard.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/testCard.vcxproj -------------------------------------------------------------------------------- /ch19/cardgames/testGroups.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/cardgames/testGroups.vcxproj -------------------------------------------------------------------------------- /ch19/ch19.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/ch19.sln -------------------------------------------------------------------------------- /ch19/employees/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/Makefile -------------------------------------------------------------------------------- /ch19/employees/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/date.cpp -------------------------------------------------------------------------------- /ch19/employees/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/date.h -------------------------------------------------------------------------------- /ch19/employees/employee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/employee.cpp -------------------------------------------------------------------------------- /ch19/employees/employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/employee.h -------------------------------------------------------------------------------- /ch19/employees/employees.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/employees.vcxproj -------------------------------------------------------------------------------- /ch19/employees/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/main.cpp -------------------------------------------------------------------------------- /ch19/employees/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/manager.cpp -------------------------------------------------------------------------------- /ch19/employees/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch19/employees/manager.h -------------------------------------------------------------------------------- /ch2/Ch2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/Ch2.sln -------------------------------------------------------------------------------- /ch2/beach/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/Makefile.mingw -------------------------------------------------------------------------------- /ch2/beach/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/Makefile.unix -------------------------------------------------------------------------------- /ch2/beach/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/README.txt -------------------------------------------------------------------------------- /ch2/beach/beach.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/beach.vcxproj -------------------------------------------------------------------------------- /ch2/beach/beach.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/beach.vcxproj.filters -------------------------------------------------------------------------------- /ch2/beach/beach.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/beach.vcxproj.user -------------------------------------------------------------------------------- /ch2/beach/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/main.cpp -------------------------------------------------------------------------------- /ch2/beach/media/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/media/beach.jpg -------------------------------------------------------------------------------- /ch2/beach/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/runw -------------------------------------------------------------------------------- /ch2/beach/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/beach/runx -------------------------------------------------------------------------------- /ch2/flamingo/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/Makefile.mingw -------------------------------------------------------------------------------- /ch2/flamingo/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/Makefile.unix -------------------------------------------------------------------------------- /ch2/flamingo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/README.txt -------------------------------------------------------------------------------- /ch2/flamingo/flamingo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/flamingo.vcxproj -------------------------------------------------------------------------------- /ch2/flamingo/flamingo.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/flamingo.vcxproj.user -------------------------------------------------------------------------------- /ch2/flamingo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/main.cpp -------------------------------------------------------------------------------- /ch2/flamingo/media/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/media/beach.jpg -------------------------------------------------------------------------------- /ch2/flamingo/media/flamingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/media/flamingo.png -------------------------------------------------------------------------------- /ch2/flamingo/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/runw -------------------------------------------------------------------------------- /ch2/flamingo/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/flamingo/runx -------------------------------------------------------------------------------- /ch2/pupdog/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/Makefile.mingw -------------------------------------------------------------------------------- /ch2/pupdog/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/Makefile.unix -------------------------------------------------------------------------------- /ch2/pupdog/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/README.txt -------------------------------------------------------------------------------- /ch2/pupdog/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/main.cpp -------------------------------------------------------------------------------- /ch2/pupdog/media/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/media/beach.jpg -------------------------------------------------------------------------------- /ch2/pupdog/media/flamingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/media/flamingo.png -------------------------------------------------------------------------------- /ch2/pupdog/media/pupdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/media/pupdog.png -------------------------------------------------------------------------------- /ch2/pupdog/pupdog.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/pupdog.vcxproj -------------------------------------------------------------------------------- /ch2/pupdog/pupdog.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/pupdog.vcxproj.filters -------------------------------------------------------------------------------- /ch2/pupdog/pupdog.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/pupdog.vcxproj.user -------------------------------------------------------------------------------- /ch2/pupdog/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/runw -------------------------------------------------------------------------------- /ch2/pupdog/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/pupdog/runx -------------------------------------------------------------------------------- /ch2/sound/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/Makefile.mingw -------------------------------------------------------------------------------- /ch2/sound/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/Makefile.unix -------------------------------------------------------------------------------- /ch2/sound/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/README.txt -------------------------------------------------------------------------------- /ch2/sound/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/main.cpp -------------------------------------------------------------------------------- /ch2/sound/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/runw -------------------------------------------------------------------------------- /ch2/sound/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/runx -------------------------------------------------------------------------------- /ch2/sound/sound.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/sound.vcxproj -------------------------------------------------------------------------------- /ch2/sound/sound.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/sound.vcxproj.filters -------------------------------------------------------------------------------- /ch2/sound/sound.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch2/sound/sound.vcxproj.user -------------------------------------------------------------------------------- /ch20/ch20.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/ch20.sln -------------------------------------------------------------------------------- /ch20/swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/swap/Makefile -------------------------------------------------------------------------------- /ch20/swap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/swap/main.cpp -------------------------------------------------------------------------------- /ch20/swap/swap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/swap/swap.vcxproj -------------------------------------------------------------------------------- /ch20/swap/swap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/swap/swap.vcxproj.filters -------------------------------------------------------------------------------- /ch20/swap/swap.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/swap/swap.vcxproj.user -------------------------------------------------------------------------------- /ch20/unusual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/unusual/Makefile -------------------------------------------------------------------------------- /ch20/unusual/unusual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/unusual/unusual.cpp -------------------------------------------------------------------------------- /ch20/unusual/unusual.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/unusual/unusual.vcxproj -------------------------------------------------------------------------------- /ch20/vectorOfInt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorOfInt/Makefile -------------------------------------------------------------------------------- /ch20/vectorOfInt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorOfInt/main.cpp -------------------------------------------------------------------------------- /ch20/vectorOfInt/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorOfInt/vector.cpp -------------------------------------------------------------------------------- /ch20/vectorOfInt/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorOfInt/vector.h -------------------------------------------------------------------------------- /ch20/vectorTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorTemplate/Makefile -------------------------------------------------------------------------------- /ch20/vectorTemplate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorTemplate/main.cpp -------------------------------------------------------------------------------- /ch20/vectorTemplate/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch20/vectorTemplate/vector.h -------------------------------------------------------------------------------- /ch21/Ch 21.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/Ch 21.sln -------------------------------------------------------------------------------- /ch21/powerupsExercise/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/Makefile.unix -------------------------------------------------------------------------------- /ch21/powerupsExercise/PowerupSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/PowerupSet.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/README.txt -------------------------------------------------------------------------------- /ch21/powerupsExercise/circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/circle.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/dddx -------------------------------------------------------------------------------- /ch21/powerupsExercise/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/gdbx -------------------------------------------------------------------------------- /ch21/powerupsExercise/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/main.cpp -------------------------------------------------------------------------------- /ch21/powerupsExercise/megaPowerup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/megaPowerup.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/powerup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/powerup.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/runw -------------------------------------------------------------------------------- /ch21/powerupsExercise/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/runx -------------------------------------------------------------------------------- /ch21/powerupsExercise/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/shape.cpp -------------------------------------------------------------------------------- /ch21/powerupsExercise/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/shape.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/text.cpp -------------------------------------------------------------------------------- /ch21/powerupsExercise/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/text.h -------------------------------------------------------------------------------- /ch21/powerupsExercise/wormhole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/wormhole.cpp -------------------------------------------------------------------------------- /ch21/powerupsExercise/wormhole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/powerupsExercise/wormhole.h -------------------------------------------------------------------------------- /ch21/shapes/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/Makefile.mingw -------------------------------------------------------------------------------- /ch21/shapes/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/Makefile.unix -------------------------------------------------------------------------------- /ch21/shapes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/README.txt -------------------------------------------------------------------------------- /ch21/shapes/SSDL_Project.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/SSDL_Project.vcxproj -------------------------------------------------------------------------------- /ch21/shapes/circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/circle.h -------------------------------------------------------------------------------- /ch21/shapes/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/dddx -------------------------------------------------------------------------------- /ch21/shapes/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/gdbx -------------------------------------------------------------------------------- /ch21/shapes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/main.cpp -------------------------------------------------------------------------------- /ch21/shapes/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/runw -------------------------------------------------------------------------------- /ch21/shapes/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/runx -------------------------------------------------------------------------------- /ch21/shapes/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/shape.cpp -------------------------------------------------------------------------------- /ch21/shapes/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/shape.h -------------------------------------------------------------------------------- /ch21/shapes/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/text.cpp -------------------------------------------------------------------------------- /ch21/shapes/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch21/shapes/text.h -------------------------------------------------------------------------------- /ch22/ch22.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/ch22.sln -------------------------------------------------------------------------------- /ch22/lists/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/lists/Makefile -------------------------------------------------------------------------------- /ch22/lists/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/lists/list.h -------------------------------------------------------------------------------- /ch22/lists/lists.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/lists/lists.vcxproj -------------------------------------------------------------------------------- /ch22/lists/lists.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/lists/lists.vcxproj.filters -------------------------------------------------------------------------------- /ch22/lists/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/lists/main.cpp -------------------------------------------------------------------------------- /ch22/listsExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch22/listsExample.txt -------------------------------------------------------------------------------- /ch23/algorithm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/algorithm/Makefile -------------------------------------------------------------------------------- /ch23/algorithm/algorithm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/algorithm/algorithm.vcxproj -------------------------------------------------------------------------------- /ch23/algorithm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/algorithm/main.cpp -------------------------------------------------------------------------------- /ch23/ch23.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/ch23.sln -------------------------------------------------------------------------------- /ch23/initializer_list/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/initializer_list/Makefile -------------------------------------------------------------------------------- /ch23/initializer_list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/initializer_list/main.cpp -------------------------------------------------------------------------------- /ch23/initializer_list/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/initializer_list/vector.h -------------------------------------------------------------------------------- /ch23/iterators/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/iterators/Makefile -------------------------------------------------------------------------------- /ch23/iterators/iterators.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/iterators/iterators.vcxproj -------------------------------------------------------------------------------- /ch23/iterators/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/iterators/list.h -------------------------------------------------------------------------------- /ch23/iterators/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/iterators/main.cpp -------------------------------------------------------------------------------- /ch23/range/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/range/Makefile -------------------------------------------------------------------------------- /ch23/range/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/range/main.cpp -------------------------------------------------------------------------------- /ch23/range/range.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/range/range.vcxproj -------------------------------------------------------------------------------- /ch23/range/range.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch23/range/range.vcxproj.filters -------------------------------------------------------------------------------- /ch24/cardLibDLL/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/card.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLL/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/card.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/cardLibDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cardLibDLL.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLL/cardLibDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cardLibDLL.vcxproj -------------------------------------------------------------------------------- /ch24/cardLibDLL/cardgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cardgroup.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLL/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cardgroup.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/cardsSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cardsSetup.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/cell.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/deck.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLL/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/deck.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/dllmain.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLL/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /ch24/cardLibDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/stdafx.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/targetver.h -------------------------------------------------------------------------------- /ch24/cardLibDLL/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLL/waste.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/card.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/card.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/cardLibDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/cardLibDLL.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/cardgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/cardgroup.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/cardgroup.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/cardsSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/cardsSetup.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/cell.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/deck.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/deck.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/dllmain.cpp -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/stdafx.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/targetver.h -------------------------------------------------------------------------------- /ch24/cardLibDLLNoPCH/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibDLLNoPCH/waste.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/card.cpp -------------------------------------------------------------------------------- /ch24/cardLibStatic/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/card.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/cardgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/cardgroup.cpp -------------------------------------------------------------------------------- /ch24/cardLibStatic/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/cardgroup.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/cell.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/deck.cpp -------------------------------------------------------------------------------- /ch24/cardLibStatic/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/deck.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /ch24/cardLibStatic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/stdafx.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/targetver.h -------------------------------------------------------------------------------- /ch24/cardLibStatic/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStatic/waste.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/card.cpp -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/card.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/cardgroup.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/cell.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/deck.cpp -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/deck.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/stdafx.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/targetver.h -------------------------------------------------------------------------------- /ch24/cardLibStaticNoPCH/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibStaticNoPCH/waste.h -------------------------------------------------------------------------------- /ch24/cardLibg++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/Makefile -------------------------------------------------------------------------------- /ch24/cardLibg++/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/card.cpp -------------------------------------------------------------------------------- /ch24/cardLibg++/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/card.h -------------------------------------------------------------------------------- /ch24/cardLibg++/cardgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/cardgroup.cpp -------------------------------------------------------------------------------- /ch24/cardLibg++/cardgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/cardgroup.h -------------------------------------------------------------------------------- /ch24/cardLibg++/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/cell.h -------------------------------------------------------------------------------- /ch24/cardLibg++/deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/deck.cpp -------------------------------------------------------------------------------- /ch24/cardLibg++/deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/deck.h -------------------------------------------------------------------------------- /ch24/cardLibg++/waste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/cardLibg++/waste.h -------------------------------------------------------------------------------- /ch24/ch24.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/ch24.sln -------------------------------------------------------------------------------- /ch24/usesDLL/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/gridLoc.h -------------------------------------------------------------------------------- /ch24/usesDLL/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/io.cpp -------------------------------------------------------------------------------- /ch24/usesDLL/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/io.h -------------------------------------------------------------------------------- /ch24/usesDLL/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/montana.cpp -------------------------------------------------------------------------------- /ch24/usesDLL/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/montana.h -------------------------------------------------------------------------------- /ch24/usesDLL/montana_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/montana_main.cpp -------------------------------------------------------------------------------- /ch24/usesDLL/usesDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/usesDLL.vcxproj -------------------------------------------------------------------------------- /ch24/usesDLL/usesDLL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLL/usesDLL.vcxproj.user -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/gridLoc.h -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/io.cpp -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/io.h -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/montana.cpp -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/montana.h -------------------------------------------------------------------------------- /ch24/usesDLLNoPCH/montana_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesDLLNoPCH/montana_main.cpp -------------------------------------------------------------------------------- /ch24/usesG++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/Makefile -------------------------------------------------------------------------------- /ch24/usesG++/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/dddx -------------------------------------------------------------------------------- /ch24/usesG++/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/gdbw -------------------------------------------------------------------------------- /ch24/usesG++/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/gdbx -------------------------------------------------------------------------------- /ch24/usesG++/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/gridLoc.h -------------------------------------------------------------------------------- /ch24/usesG++/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/io.cpp -------------------------------------------------------------------------------- /ch24/usesG++/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/io.h -------------------------------------------------------------------------------- /ch24/usesG++/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/montana.cpp -------------------------------------------------------------------------------- /ch24/usesG++/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/montana.h -------------------------------------------------------------------------------- /ch24/usesG++/montana_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/montana_main.cpp -------------------------------------------------------------------------------- /ch24/usesG++/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/runw -------------------------------------------------------------------------------- /ch24/usesG++/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesG++/runx -------------------------------------------------------------------------------- /ch24/usesStatic/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/gridLoc.h -------------------------------------------------------------------------------- /ch24/usesStatic/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/io.cpp -------------------------------------------------------------------------------- /ch24/usesStatic/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/io.h -------------------------------------------------------------------------------- /ch24/usesStatic/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/montana.cpp -------------------------------------------------------------------------------- /ch24/usesStatic/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/montana.h -------------------------------------------------------------------------------- /ch24/usesStatic/montana_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStatic/montana_main.cpp -------------------------------------------------------------------------------- /ch24/usesStaticNoPCH/gridLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStaticNoPCH/gridLoc.h -------------------------------------------------------------------------------- /ch24/usesStaticNoPCH/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStaticNoPCH/io.cpp -------------------------------------------------------------------------------- /ch24/usesStaticNoPCH/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStaticNoPCH/io.h -------------------------------------------------------------------------------- /ch24/usesStaticNoPCH/montana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStaticNoPCH/montana.cpp -------------------------------------------------------------------------------- /ch24/usesStaticNoPCH/montana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch24/usesStaticNoPCH/montana.h -------------------------------------------------------------------------------- /ch26/01-sstream/01-sstream.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/01-sstream.vcxproj -------------------------------------------------------------------------------- /ch26/01-sstream/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/Makefile.mingw -------------------------------------------------------------------------------- /ch26/01-sstream/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/Makefile.unix -------------------------------------------------------------------------------- /ch26/01-sstream/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/README.txt -------------------------------------------------------------------------------- /ch26/01-sstream/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/dddx -------------------------------------------------------------------------------- /ch26/01-sstream/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/gdbw -------------------------------------------------------------------------------- /ch26/01-sstream/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/gdbx -------------------------------------------------------------------------------- /ch26/01-sstream/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/main.cpp -------------------------------------------------------------------------------- /ch26/01-sstream/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/runw -------------------------------------------------------------------------------- /ch26/01-sstream/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstream/runx -------------------------------------------------------------------------------- /ch26/01-sstreamWithoutSSDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstreamWithoutSSDL/Makefile -------------------------------------------------------------------------------- /ch26/01-sstreamWithoutSSDL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/01-sstreamWithoutSSDL/main.cpp -------------------------------------------------------------------------------- /ch26/02-iomanip/02-iomanip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/02-iomanip/02-iomanip.vcxproj -------------------------------------------------------------------------------- /ch26/02-iomanip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/02-iomanip/Makefile -------------------------------------------------------------------------------- /ch26/02-iomanip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/02-iomanip/main.cpp -------------------------------------------------------------------------------- /ch26/03-cmdLineArgs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/03-cmdLineArgs/Makefile -------------------------------------------------------------------------------- /ch26/03-cmdLineArgs/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/03-cmdLineArgs/file1.txt -------------------------------------------------------------------------------- /ch26/03-cmdLineArgs/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/03-cmdLineArgs/file2.txt -------------------------------------------------------------------------------- /ch26/03-cmdLineArgs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/03-cmdLineArgs/main.cpp -------------------------------------------------------------------------------- /ch26/04-staticCastEtAl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/04-staticCastEtAl/Makefile -------------------------------------------------------------------------------- /ch26/04-staticCastEtAl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/04-staticCastEtAl/main.cpp -------------------------------------------------------------------------------- /ch26/05-06-constexpr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/05-06-constexpr/Makefile -------------------------------------------------------------------------------- /ch26/05-06-constexpr/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/05-06-constexpr/card.cpp -------------------------------------------------------------------------------- /ch26/05-06-constexpr/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/05-06-constexpr/card.h -------------------------------------------------------------------------------- /ch26/05-06-constexpr/testCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/05-06-constexpr/testCard.cpp -------------------------------------------------------------------------------- /ch26/07-userDefLiterals/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/07-userDefLiterals/Makefile -------------------------------------------------------------------------------- /ch26/07-userDefLiterals/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/07-userDefLiterals/main.cpp -------------------------------------------------------------------------------- /ch26/08-lambdas/08-lambdas.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/08-lambdas/08-lambdas.vcxproj -------------------------------------------------------------------------------- /ch26/08-lambdas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/08-lambdas/Makefile -------------------------------------------------------------------------------- /ch26/08-lambdas/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/08-lambdas/main.cpp -------------------------------------------------------------------------------- /ch26/09-structuredBindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/09-structuredBindings/Makefile -------------------------------------------------------------------------------- /ch26/09-structuredBindings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/09-structuredBindings/main.cpp -------------------------------------------------------------------------------- /ch26/10-smartPointersMisc/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/10-smartPointersMisc/date.h -------------------------------------------------------------------------------- /ch26/10-smartPtrsWithShapes/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/10-smartPtrsWithShapes/dddx -------------------------------------------------------------------------------- /ch26/10-smartPtrsWithShapes/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/10-smartPtrsWithShapes/gdbx -------------------------------------------------------------------------------- /ch26/10-smartPtrsWithShapes/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/10-smartPtrsWithShapes/runw -------------------------------------------------------------------------------- /ch26/10-smartPtrsWithShapes/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/10-smartPtrsWithShapes/runx -------------------------------------------------------------------------------- /ch26/11-flags/11-flags.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/11-flags/11-flags.vcxproj -------------------------------------------------------------------------------- /ch26/11-flags/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/11-flags/Makefile -------------------------------------------------------------------------------- /ch26/11-flags/flags.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/11-flags/flags.vcxproj.user -------------------------------------------------------------------------------- /ch26/11-flags/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/11-flags/main.cpp -------------------------------------------------------------------------------- /ch26/ch26.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch26/ch26.sln -------------------------------------------------------------------------------- /ch27/ch27.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/ch27.sln -------------------------------------------------------------------------------- /ch27/friends/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/Makefile -------------------------------------------------------------------------------- /ch27/friends/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/area.cpp -------------------------------------------------------------------------------- /ch27/friends/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/area.h -------------------------------------------------------------------------------- /ch27/friends/areas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/areas.txt -------------------------------------------------------------------------------- /ch27/friends/friends.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/friends.vcxproj -------------------------------------------------------------------------------- /ch27/friends/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/friends/main.cpp -------------------------------------------------------------------------------- /ch27/protected/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/protected/Makefile -------------------------------------------------------------------------------- /ch27/protected/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/protected/main.cpp -------------------------------------------------------------------------------- /ch27/protected/protected.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/protected/protected.vcxproj -------------------------------------------------------------------------------- /ch27/templateSpec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/templateSpec/Makefile -------------------------------------------------------------------------------- /ch27/templateSpec/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/templateSpec/vector.h -------------------------------------------------------------------------------- /ch27/userCastOp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/userCastOp/Makefile -------------------------------------------------------------------------------- /ch27/userCastOp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/userCastOp/main.cpp -------------------------------------------------------------------------------- /ch27/userCastOp/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/userCastOp/string.cpp -------------------------------------------------------------------------------- /ch27/userCastOp/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch27/userCastOp/string.h -------------------------------------------------------------------------------- /ch28/ch28.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ch28.sln -------------------------------------------------------------------------------- /ch28/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/hello/Makefile -------------------------------------------------------------------------------- /ch28/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/hello/hello.c -------------------------------------------------------------------------------- /ch28/hello/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/hello/hello.vcxproj -------------------------------------------------------------------------------- /ch28/hello/hello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/hello/hello.vcxproj.filters -------------------------------------------------------------------------------- /ch28/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/io/Makefile -------------------------------------------------------------------------------- /ch28/io/io.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/io/io.vcxproj -------------------------------------------------------------------------------- /ch28/io/io.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/io/io.vcxproj.filters -------------------------------------------------------------------------------- /ch28/io/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/io/main.c -------------------------------------------------------------------------------- /ch28/ioWFiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWFiles/Makefile -------------------------------------------------------------------------------- /ch28/ioWFiles/fileIO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWFiles/fileIO.vcxproj -------------------------------------------------------------------------------- /ch28/ioWFiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWFiles/main.c -------------------------------------------------------------------------------- /ch28/ioWStrings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWStrings/Makefile -------------------------------------------------------------------------------- /ch28/ioWStrings/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWStrings/main.c -------------------------------------------------------------------------------- /ch28/ioWStrings/stringIO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/ioWStrings/stringIO.vcxproj -------------------------------------------------------------------------------- /ch28/passcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/passcode/Makefile -------------------------------------------------------------------------------- /ch28/passcode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/passcode/main.c -------------------------------------------------------------------------------- /ch28/passcode/passcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/passcode/passcode.vcxproj -------------------------------------------------------------------------------- /ch28/stringStats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/stringStats/Makefile -------------------------------------------------------------------------------- /ch28/stringStats/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch28/stringStats/main.c -------------------------------------------------------------------------------- /ch29/Ch29.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/Ch29.sln -------------------------------------------------------------------------------- /ch29/sdlProgram/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/Makefile.mingw -------------------------------------------------------------------------------- /ch29/sdlProgram/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/Makefile.unix -------------------------------------------------------------------------------- /ch29/sdlProgram/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/README.txt -------------------------------------------------------------------------------- /ch29/sdlProgram/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/dddx -------------------------------------------------------------------------------- /ch29/sdlProgram/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/gdbw -------------------------------------------------------------------------------- /ch29/sdlProgram/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/gdbx -------------------------------------------------------------------------------- /ch29/sdlProgram/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/main.cpp -------------------------------------------------------------------------------- /ch29/sdlProgram/media/pupdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/media/pupdog.png -------------------------------------------------------------------------------- /ch29/sdlProgram/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/runw -------------------------------------------------------------------------------- /ch29/sdlProgram/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch29/sdlProgram/runx -------------------------------------------------------------------------------- /ch3/Ch3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/Ch3.sln -------------------------------------------------------------------------------- /ch3/diver/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/Makefile.mingw -------------------------------------------------------------------------------- /ch3/diver/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/Makefile.unix -------------------------------------------------------------------------------- /ch3/diver/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/README.txt -------------------------------------------------------------------------------- /ch3/diver/diver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/diver.vcxproj -------------------------------------------------------------------------------- /ch3/diver/diver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/diver.vcxproj.filters -------------------------------------------------------------------------------- /ch3/diver/diver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/diver.vcxproj.user -------------------------------------------------------------------------------- /ch3/diver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/main.cpp -------------------------------------------------------------------------------- /ch3/diver/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/runw -------------------------------------------------------------------------------- /ch3/diver/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/diver/runx -------------------------------------------------------------------------------- /ch3/star/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/Makefile.mingw -------------------------------------------------------------------------------- /ch3/star/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/Makefile.unix -------------------------------------------------------------------------------- /ch3/star/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/README.txt -------------------------------------------------------------------------------- /ch3/star/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/main.cpp -------------------------------------------------------------------------------- /ch3/star/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/runw -------------------------------------------------------------------------------- /ch3/star/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/runx -------------------------------------------------------------------------------- /ch3/star/star.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/star.vcxproj -------------------------------------------------------------------------------- /ch3/star/star.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/star.vcxproj.filters -------------------------------------------------------------------------------- /ch3/star/star.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/star/star.vcxproj.user -------------------------------------------------------------------------------- /ch3/variables/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/Makefile.mingw -------------------------------------------------------------------------------- /ch3/variables/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/Makefile.unix -------------------------------------------------------------------------------- /ch3/variables/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/README.txt -------------------------------------------------------------------------------- /ch3/variables/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/main.cpp -------------------------------------------------------------------------------- /ch3/variables/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/runw -------------------------------------------------------------------------------- /ch3/variables/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/runx -------------------------------------------------------------------------------- /ch3/variables/variables.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch3/variables/variables.vcxproj -------------------------------------------------------------------------------- /ch4/Ch4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/Ch4.sln -------------------------------------------------------------------------------- /ch4/mouse/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/Makefile.mingw -------------------------------------------------------------------------------- /ch4/mouse/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/Makefile.unix -------------------------------------------------------------------------------- /ch4/mouse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/README.txt -------------------------------------------------------------------------------- /ch4/mouse/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/main.cpp -------------------------------------------------------------------------------- /ch4/mouse/mouse.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/mouse.vcxproj -------------------------------------------------------------------------------- /ch4/mouse/mouse.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/mouse.vcxproj.filters -------------------------------------------------------------------------------- /ch4/mouse/mouse.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/mouse.vcxproj.user -------------------------------------------------------------------------------- /ch4/mouse/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/runw -------------------------------------------------------------------------------- /ch4/mouse/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/mouse/runx -------------------------------------------------------------------------------- /ch4/searchBox/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/Makefile.mingw -------------------------------------------------------------------------------- /ch4/searchBox/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/Makefile.unix -------------------------------------------------------------------------------- /ch4/searchBox/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/README.txt -------------------------------------------------------------------------------- /ch4/searchBox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/main.cpp -------------------------------------------------------------------------------- /ch4/searchBox/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/runw -------------------------------------------------------------------------------- /ch4/searchBox/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/runx -------------------------------------------------------------------------------- /ch4/searchBox/searchBox.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchBox/searchBox.vcxproj -------------------------------------------------------------------------------- /ch4/searchGame/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/Makefile.mingw -------------------------------------------------------------------------------- /ch4/searchGame/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/Makefile.unix -------------------------------------------------------------------------------- /ch4/searchGame/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/README.txt -------------------------------------------------------------------------------- /ch4/searchGame/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/main.cpp -------------------------------------------------------------------------------- /ch4/searchGame/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/runw -------------------------------------------------------------------------------- /ch4/searchGame/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/runx -------------------------------------------------------------------------------- /ch4/searchGame/searchGame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch4/searchGame/searchGame.vcxproj -------------------------------------------------------------------------------- /ch5/Ch5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/Ch5.sln -------------------------------------------------------------------------------- /ch5/alphabeticalOrder/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/alphabeticalOrder/README.txt -------------------------------------------------------------------------------- /ch5/alphabeticalOrder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/alphabeticalOrder/main.cpp -------------------------------------------------------------------------------- /ch5/alphabeticalOrder/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/alphabeticalOrder/runw -------------------------------------------------------------------------------- /ch5/alphabeticalOrder/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/alphabeticalOrder/runx -------------------------------------------------------------------------------- /ch5/averaging/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/Makefile.mingw -------------------------------------------------------------------------------- /ch5/averaging/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/Makefile.unix -------------------------------------------------------------------------------- /ch5/averaging/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/README.txt -------------------------------------------------------------------------------- /ch5/averaging/averaging.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/averaging.vcxproj -------------------------------------------------------------------------------- /ch5/averaging/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/main.cpp -------------------------------------------------------------------------------- /ch5/averaging/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/runw -------------------------------------------------------------------------------- /ch5/averaging/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/averaging/runx -------------------------------------------------------------------------------- /ch5/input/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/Makefile.mingw -------------------------------------------------------------------------------- /ch5/input/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/Makefile.unix -------------------------------------------------------------------------------- /ch5/input/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/README.txt -------------------------------------------------------------------------------- /ch5/input/input.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/input.vcxproj -------------------------------------------------------------------------------- /ch5/input/input.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/input.vcxproj.filters -------------------------------------------------------------------------------- /ch5/input/input.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/input.vcxproj.user -------------------------------------------------------------------------------- /ch5/input/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/main.cpp -------------------------------------------------------------------------------- /ch5/input/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/runw -------------------------------------------------------------------------------- /ch5/input/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/input/runx -------------------------------------------------------------------------------- /ch5/whileLoopsWithSSDL/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/whileLoopsWithSSDL/README.txt -------------------------------------------------------------------------------- /ch5/whileLoopsWithSSDL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/whileLoopsWithSSDL/main.cpp -------------------------------------------------------------------------------- /ch5/whileLoopsWithSSDL/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/whileLoopsWithSSDL/runw -------------------------------------------------------------------------------- /ch5/whileLoopsWithSSDL/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch5/whileLoopsWithSSDL/runx -------------------------------------------------------------------------------- /ch6/Ch6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/Ch6.sln -------------------------------------------------------------------------------- /ch6/circles/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/Makefile.mingw -------------------------------------------------------------------------------- /ch6/circles/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/Makefile.unix -------------------------------------------------------------------------------- /ch6/circles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/README.txt -------------------------------------------------------------------------------- /ch6/circles/circles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/circles.vcxproj -------------------------------------------------------------------------------- /ch6/circles/circles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/circles.vcxproj.user -------------------------------------------------------------------------------- /ch6/circles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/main.cpp -------------------------------------------------------------------------------- /ch6/circles/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/runw -------------------------------------------------------------------------------- /ch6/circles/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch6/circles/runx -------------------------------------------------------------------------------- /ch7/4-panelComic/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/Makefile.mingw -------------------------------------------------------------------------------- /ch7/4-panelComic/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/Makefile.unix -------------------------------------------------------------------------------- /ch7/4-panelComic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/README.txt -------------------------------------------------------------------------------- /ch7/4-panelComic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/main.cpp -------------------------------------------------------------------------------- /ch7/4-panelComic/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/runw -------------------------------------------------------------------------------- /ch7/4-panelComic/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/4-panelComic/runx -------------------------------------------------------------------------------- /ch7/Ch7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/Ch7.sln -------------------------------------------------------------------------------- /ch7/drawCross/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/Makefile.mingw -------------------------------------------------------------------------------- /ch7/drawCross/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/Makefile.unix -------------------------------------------------------------------------------- /ch7/drawCross/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/README.txt -------------------------------------------------------------------------------- /ch7/drawCross/drawCross.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/drawCross.vcxproj -------------------------------------------------------------------------------- /ch7/drawCross/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/main.cpp -------------------------------------------------------------------------------- /ch7/drawCross/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/runw -------------------------------------------------------------------------------- /ch7/drawCross/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/drawCross/runx -------------------------------------------------------------------------------- /ch7/globalVars/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/Makefile.mingw -------------------------------------------------------------------------------- /ch7/globalVars/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/Makefile.unix -------------------------------------------------------------------------------- /ch7/globalVars/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/README.txt -------------------------------------------------------------------------------- /ch7/globalVars/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/main.cpp -------------------------------------------------------------------------------- /ch7/globalVars/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/runw -------------------------------------------------------------------------------- /ch7/globalVars/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/globalVars/runx -------------------------------------------------------------------------------- /ch7/greyscale/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/Makefile.mingw -------------------------------------------------------------------------------- /ch7/greyscale/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/Makefile.unix -------------------------------------------------------------------------------- /ch7/greyscale/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/README.txt -------------------------------------------------------------------------------- /ch7/greyscale/greyscale.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/greyscale.vcxproj -------------------------------------------------------------------------------- /ch7/greyscale/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/main.cpp -------------------------------------------------------------------------------- /ch7/greyscale/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/runw -------------------------------------------------------------------------------- /ch7/greyscale/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch7/greyscale/runx -------------------------------------------------------------------------------- /ch8/Ch8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/Ch8.sln -------------------------------------------------------------------------------- /ch8/angles/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/Makefile.mingw -------------------------------------------------------------------------------- /ch8/angles/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/Makefile.unix -------------------------------------------------------------------------------- /ch8/angles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/README.txt -------------------------------------------------------------------------------- /ch8/angles/angles.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/angles.vcxproj -------------------------------------------------------------------------------- /ch8/angles/angles.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/angles.vcxproj.filters -------------------------------------------------------------------------------- /ch8/angles/angles.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/angles.vcxproj.user -------------------------------------------------------------------------------- /ch8/angles/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/main.cpp -------------------------------------------------------------------------------- /ch8/angles/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/runw -------------------------------------------------------------------------------- /ch8/angles/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/angles/runx -------------------------------------------------------------------------------- /ch8/craps/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/Makefile.mingw -------------------------------------------------------------------------------- /ch8/craps/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/Makefile.unix -------------------------------------------------------------------------------- /ch8/craps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/README.txt -------------------------------------------------------------------------------- /ch8/craps/craps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/craps.vcxproj -------------------------------------------------------------------------------- /ch8/craps/craps.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/craps.vcxproj.filters -------------------------------------------------------------------------------- /ch8/craps/craps.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/craps.vcxproj.user -------------------------------------------------------------------------------- /ch8/craps/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/main.cpp -------------------------------------------------------------------------------- /ch8/craps/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/runw -------------------------------------------------------------------------------- /ch8/craps/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/craps/runx -------------------------------------------------------------------------------- /ch8/random/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/Makefile.mingw -------------------------------------------------------------------------------- /ch8/random/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/Makefile.unix -------------------------------------------------------------------------------- /ch8/random/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/README.txt -------------------------------------------------------------------------------- /ch8/random/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/main.cpp -------------------------------------------------------------------------------- /ch8/random/random.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/random.vcxproj -------------------------------------------------------------------------------- /ch8/random/random.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/random.vcxproj.filters -------------------------------------------------------------------------------- /ch8/random/random.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/random.vcxproj.user -------------------------------------------------------------------------------- /ch8/random/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/runw -------------------------------------------------------------------------------- /ch8/random/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch8/random/runx -------------------------------------------------------------------------------- /ch9/Ch9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/Ch9.sln -------------------------------------------------------------------------------- /ch9/allFixed/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/Makefile.mingw -------------------------------------------------------------------------------- /ch9/allFixed/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/Makefile.unix -------------------------------------------------------------------------------- /ch9/allFixed/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/README.txt -------------------------------------------------------------------------------- /ch9/allFixed/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/dddx -------------------------------------------------------------------------------- /ch9/allFixed/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/gdbw -------------------------------------------------------------------------------- /ch9/allFixed/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/gdbx -------------------------------------------------------------------------------- /ch9/allFixed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/main.cpp -------------------------------------------------------------------------------- /ch9/allFixed/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/runw -------------------------------------------------------------------------------- /ch9/allFixed/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allFixed/runx -------------------------------------------------------------------------------- /ch9/allWrong/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/Makefile.mingw -------------------------------------------------------------------------------- /ch9/allWrong/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/Makefile.unix -------------------------------------------------------------------------------- /ch9/allWrong/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/README.txt -------------------------------------------------------------------------------- /ch9/allWrong/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/dddx -------------------------------------------------------------------------------- /ch9/allWrong/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/gdbw -------------------------------------------------------------------------------- /ch9/allWrong/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/gdbx -------------------------------------------------------------------------------- /ch9/allWrong/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/main.cpp -------------------------------------------------------------------------------- /ch9/allWrong/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/runw -------------------------------------------------------------------------------- /ch9/allWrong/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/allWrong/runx -------------------------------------------------------------------------------- /ch9/stripesFixed/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/Makefile.mingw -------------------------------------------------------------------------------- /ch9/stripesFixed/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/Makefile.unix -------------------------------------------------------------------------------- /ch9/stripesFixed/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/README.txt -------------------------------------------------------------------------------- /ch9/stripesFixed/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/dddx -------------------------------------------------------------------------------- /ch9/stripesFixed/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/gdbw -------------------------------------------------------------------------------- /ch9/stripesFixed/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/gdbx -------------------------------------------------------------------------------- /ch9/stripesFixed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/main.cpp -------------------------------------------------------------------------------- /ch9/stripesFixed/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/runw -------------------------------------------------------------------------------- /ch9/stripesFixed/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/ch9/stripesFixed/runx -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/clean.bat -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/errata.md -------------------------------------------------------------------------------- /external/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/README.txt -------------------------------------------------------------------------------- /external/SDL2-MinGW/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2-MinGW/SDL2/BUGS.txt -------------------------------------------------------------------------------- /external/SDL2-MinGW/SDL2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2-MinGW/SDL2/Makefile -------------------------------------------------------------------------------- /external/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/BUGS.txt -------------------------------------------------------------------------------- /external/SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/COPYING.txt -------------------------------------------------------------------------------- /external/SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /external/SDL2/README.SDL2_ttf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/README.SDL2_ttf.txt -------------------------------------------------------------------------------- /external/SDL2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/README.txt -------------------------------------------------------------------------------- /external/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /external/SDL2/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/README-hg.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/README-ios.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/README-nacl.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/README-psp.md -------------------------------------------------------------------------------- /external/SDL2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/README.md -------------------------------------------------------------------------------- /external/SDL2/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/docs/doxyfile -------------------------------------------------------------------------------- /external/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_image.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_mixer.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_ttf.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /external/SDL2/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /external/SDL2/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /external/SDL2/lib/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x64/zlib1.dll -------------------------------------------------------------------------------- /external/SDL2/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /external/SDL2/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /external/SDL2/lib/x86/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SDL2/lib/x86/zlib1.dll -------------------------------------------------------------------------------- /external/SSDL/COPYING.SSDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/COPYING.SSDL.txt -------------------------------------------------------------------------------- /external/SSDL/MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/MinGW/Makefile -------------------------------------------------------------------------------- /external/SSDL/MinGW/libssdl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/MinGW/libssdl.a -------------------------------------------------------------------------------- /external/SSDL/MinGW/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/MinGW/readme.txt -------------------------------------------------------------------------------- /external/SSDL/MinGW/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/MinGW/runw -------------------------------------------------------------------------------- /external/SSDL/README.SSDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/README.SSDL.txt -------------------------------------------------------------------------------- /external/SSDL/VS/SSDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/VS/SSDL.sln -------------------------------------------------------------------------------- /external/SSDL/VS/SSDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/VS/SSDL.vcxproj -------------------------------------------------------------------------------- /external/SSDL/VS/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/VS/test.vcxproj -------------------------------------------------------------------------------- /external/SSDL/debugging notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/debugging notes.txt -------------------------------------------------------------------------------- /external/SSDL/include/SSDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/include/SSDL.h -------------------------------------------------------------------------------- /external/SSDL/include/SSDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/include/SSDL_draw.h -------------------------------------------------------------------------------- /external/SSDL/include/SSDL_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/include/SSDL_font.h -------------------------------------------------------------------------------- /external/SSDL/include/SSDL_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/include/SSDL_io.h -------------------------------------------------------------------------------- /external/SSDL/libvs/x64/SSDL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/libvs/x64/SSDL.pdb -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_color.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_draw.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_font.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_image.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_io.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_sound.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_sprite.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_stream.cpp -------------------------------------------------------------------------------- /external/SSDL/src/SSDL_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/src/SSDL_timer.cpp -------------------------------------------------------------------------------- /external/SSDL/test/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/Makefile.mingw -------------------------------------------------------------------------------- /external/SSDL/test/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/Makefile.unix -------------------------------------------------------------------------------- /external/SSDL/test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/README.txt -------------------------------------------------------------------------------- /external/SSDL/test/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/dddx -------------------------------------------------------------------------------- /external/SSDL/test/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/gdbw -------------------------------------------------------------------------------- /external/SSDL/test/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/gdbx -------------------------------------------------------------------------------- /external/SSDL/test/media/yum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/media/yum.png -------------------------------------------------------------------------------- /external/SSDL/test/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/runw -------------------------------------------------------------------------------- /external/SSDL/test/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/runx -------------------------------------------------------------------------------- /external/SSDL/test/testSSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/test/testSSDL.cpp -------------------------------------------------------------------------------- /external/SSDL/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/unix/Makefile -------------------------------------------------------------------------------- /external/SSDL/unix/libssdl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/unix/libssdl.so -------------------------------------------------------------------------------- /external/SSDL/unix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/unix/readme.txt -------------------------------------------------------------------------------- /external/SSDL/unix/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/unix/runx -------------------------------------------------------------------------------- /external/SSDL/unixTestWoLib/dddx: -------------------------------------------------------------------------------- 1 | ddd a.out & 2 | 3 | 4 | -------------------------------------------------------------------------------- /external/SSDL/unixTestWoLib/gdbx: -------------------------------------------------------------------------------- 1 | gdb a.out 2 | 3 | -------------------------------------------------------------------------------- /external/SSDL/unixTestWoLib/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/external/SSDL/unixTestWoLib/runx -------------------------------------------------------------------------------- /newWork/basicSSDLProject/dddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/dddx -------------------------------------------------------------------------------- /newWork/basicSSDLProject/gdbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/gdbw -------------------------------------------------------------------------------- /newWork/basicSSDLProject/gdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/gdbx -------------------------------------------------------------------------------- /newWork/basicSSDLProject/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/main.cpp -------------------------------------------------------------------------------- /newWork/basicSSDLProject/runw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/runw -------------------------------------------------------------------------------- /newWork/basicSSDLProject/runx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/cpp-for-lazy-programmers/HEAD/newWork/basicSSDLProject/runx --------------------------------------------------------------------------------