├── .gitignore ├── CMakeLists.txt ├── README.md ├── basics ├── HelloWorld.cpp ├── Read.cpp └── Write.cpp ├── classes ├── Allocator.h ├── Common.h ├── Date.cpp ├── Date.h ├── Histogram.cpp ├── Histogram.h ├── Option.h ├── Result.h ├── Set.cpp ├── Set.h ├── Table.cpp └── Table.h ├── compile.bat ├── concurrency-and-utilities ├── DrawHistogram.cpp ├── FindDecimal.cpp ├── ThreadsHelloWorld.cpp ├── TimeLoop.cpp └── regex ├── construction-cleanup-copy-and-move ├── CMakeLists.txt ├── Editor.cpp ├── Editor.h ├── File.cpp ├── File.h ├── Handle.cpp ├── Handle.h └── test.txt ├── containers-and-algorithms ├── IntVector.cpp ├── ReadIntegersFromFile.cpp ├── ReadNameAndAge.cpp ├── ReadPerson.cpp ├── StringVector.cpp └── WriteIntegersToFile.cpp ├── core ├── CMakeLists.txt ├── ExString.cpp ├── ExString.h └── Pointer.h ├── derived-classes ├── CMakeLists.txt ├── base │ ├── Base.hpp │ ├── CMakeLists.txt │ └── Test.cpp ├── charvec │ ├── CMakeLists.txt │ └── charvec.cc └── task │ ├── CMakeLists.txt │ ├── task.cc │ └── task.h ├── exception-handling ├── CheckedPtr.cpp ├── CheckedPtr.h ├── Insexception.cpp ├── Integer.cpp ├── Integer.h ├── IoEx.cpp ├── IoEx.h ├── MainCatcher.cpp ├── Vector.cpp └── Vector.h ├── expressions ├── Bitwise.cpp ├── Calculator.cpp ├── Calculator.hpp ├── Parenthesize.cpp ├── ReadPairs.cpp ├── Strings.cpp └── pairs.txt ├── files ├── Includes.cpp └── Includes.h ├── functions ├── AliasFunction.cpp ├── Cat.cpp ├── Encrypt.cpp ├── HelloWorld.cpp ├── Tree.cpp └── static │ ├── CMakeLists.txt │ ├── Static.cpp │ ├── Static.h │ └── TestStatic.cpp ├── overloading ├── CMakeLists.txt ├── Conversions.cpp ├── TestString.cpp ├── complex │ ├── CMakeLists.txt │ ├── Complex.cpp │ ├── Complex.h │ └── Imaginary.h └── integer │ ├── CMakeLists.txt │ ├── Integer.cpp │ └── Integer.h ├── pointers-array-and-references ├── Aliasing.cpp ├── PointerAlignments.cpp ├── PointerDiff.cpp ├── PrintMonths.cpp ├── ReadAndPrint.cpp ├── SizeOfChar.cpp ├── SwapInt.cpp └── Variuos.cpp ├── result ├── CMakeLists.txt ├── include │ └── Result.hpp └── src │ └── Result.cpp ├── select-operations ├── Apply.cpp ├── BadAlloc.cpp └── SumElements.cpp ├── special-operations ├── CMakeLists.txt ├── pointer │ ├── CMakeLists.txt │ └── Pointer.cpp └── string │ ├── CMakeLists.txt │ ├── Iterator.cpp │ ├── Iterator.h │ └── Test.cpp ├── statements ├── Atoi.cpp ├── Errors.cpp ├── ForWhile.cpp ├── Itoa.cpp └── StripComments.cpp ├── structures-unions-and-enumerations ├── Date.cpp ├── Month.cpp ├── Month.h ├── Season.cpp ├── Season.h └── Struct.cpp ├── types-and-declarations ├── Limits.cpp ├── ListLoop.cpp ├── PlainCharDetails.cpp ├── PrintCharInt.cpp └── TestSizeOf.cpp └── utils └── Measure.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/README.md -------------------------------------------------------------------------------- /basics/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/basics/HelloWorld.cpp -------------------------------------------------------------------------------- /basics/Read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/basics/Read.cpp -------------------------------------------------------------------------------- /basics/Write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/basics/Write.cpp -------------------------------------------------------------------------------- /classes/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Allocator.h -------------------------------------------------------------------------------- /classes/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Common.h -------------------------------------------------------------------------------- /classes/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Date.cpp -------------------------------------------------------------------------------- /classes/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Date.h -------------------------------------------------------------------------------- /classes/Histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Histogram.cpp -------------------------------------------------------------------------------- /classes/Histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Histogram.h -------------------------------------------------------------------------------- /classes/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Option.h -------------------------------------------------------------------------------- /classes/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Result.h -------------------------------------------------------------------------------- /classes/Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Set.cpp -------------------------------------------------------------------------------- /classes/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Set.h -------------------------------------------------------------------------------- /classes/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Table.cpp -------------------------------------------------------------------------------- /classes/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/classes/Table.h -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/compile.bat -------------------------------------------------------------------------------- /concurrency-and-utilities/DrawHistogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/concurrency-and-utilities/DrawHistogram.cpp -------------------------------------------------------------------------------- /concurrency-and-utilities/FindDecimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/concurrency-and-utilities/FindDecimal.cpp -------------------------------------------------------------------------------- /concurrency-and-utilities/ThreadsHelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/concurrency-and-utilities/ThreadsHelloWorld.cpp -------------------------------------------------------------------------------- /concurrency-and-utilities/TimeLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/concurrency-and-utilities/TimeLoop.cpp -------------------------------------------------------------------------------- /concurrency-and-utilities/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/concurrency-and-utilities/regex -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/CMakeLists.txt -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/Editor.cpp -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/Editor.h -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/File.cpp -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/File.h -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/Handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/Handle.cpp -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/Handle.h -------------------------------------------------------------------------------- /construction-cleanup-copy-and-move/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/construction-cleanup-copy-and-move/test.txt -------------------------------------------------------------------------------- /containers-and-algorithms/IntVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/IntVector.cpp -------------------------------------------------------------------------------- /containers-and-algorithms/ReadIntegersFromFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/ReadIntegersFromFile.cpp -------------------------------------------------------------------------------- /containers-and-algorithms/ReadNameAndAge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/ReadNameAndAge.cpp -------------------------------------------------------------------------------- /containers-and-algorithms/ReadPerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/ReadPerson.cpp -------------------------------------------------------------------------------- /containers-and-algorithms/StringVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/StringVector.cpp -------------------------------------------------------------------------------- /containers-and-algorithms/WriteIntegersToFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/containers-and-algorithms/WriteIntegersToFile.cpp -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/ExString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/core/ExString.cpp -------------------------------------------------------------------------------- /core/ExString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/core/ExString.h -------------------------------------------------------------------------------- /core/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/core/Pointer.h -------------------------------------------------------------------------------- /derived-classes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/CMakeLists.txt -------------------------------------------------------------------------------- /derived-classes/base/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/base/Base.hpp -------------------------------------------------------------------------------- /derived-classes/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/base/CMakeLists.txt -------------------------------------------------------------------------------- /derived-classes/base/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/base/Test.cpp -------------------------------------------------------------------------------- /derived-classes/charvec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/charvec/CMakeLists.txt -------------------------------------------------------------------------------- /derived-classes/charvec/charvec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/charvec/charvec.cc -------------------------------------------------------------------------------- /derived-classes/task/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/task/CMakeLists.txt -------------------------------------------------------------------------------- /derived-classes/task/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/task/task.cc -------------------------------------------------------------------------------- /derived-classes/task/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/derived-classes/task/task.h -------------------------------------------------------------------------------- /exception-handling/CheckedPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/CheckedPtr.cpp -------------------------------------------------------------------------------- /exception-handling/CheckedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/CheckedPtr.h -------------------------------------------------------------------------------- /exception-handling/Insexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/Insexception.cpp -------------------------------------------------------------------------------- /exception-handling/Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/Integer.cpp -------------------------------------------------------------------------------- /exception-handling/Integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/Integer.h -------------------------------------------------------------------------------- /exception-handling/IoEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/IoEx.cpp -------------------------------------------------------------------------------- /exception-handling/IoEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/IoEx.h -------------------------------------------------------------------------------- /exception-handling/MainCatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/MainCatcher.cpp -------------------------------------------------------------------------------- /exception-handling/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/Vector.cpp -------------------------------------------------------------------------------- /exception-handling/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/exception-handling/Vector.h -------------------------------------------------------------------------------- /expressions/Bitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/Bitwise.cpp -------------------------------------------------------------------------------- /expressions/Calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/Calculator.cpp -------------------------------------------------------------------------------- /expressions/Calculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/Calculator.hpp -------------------------------------------------------------------------------- /expressions/Parenthesize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/Parenthesize.cpp -------------------------------------------------------------------------------- /expressions/ReadPairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/ReadPairs.cpp -------------------------------------------------------------------------------- /expressions/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/Strings.cpp -------------------------------------------------------------------------------- /expressions/pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/expressions/pairs.txt -------------------------------------------------------------------------------- /files/Includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/files/Includes.cpp -------------------------------------------------------------------------------- /files/Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/files/Includes.h -------------------------------------------------------------------------------- /functions/AliasFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/AliasFunction.cpp -------------------------------------------------------------------------------- /functions/Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/Cat.cpp -------------------------------------------------------------------------------- /functions/Encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/Encrypt.cpp -------------------------------------------------------------------------------- /functions/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/HelloWorld.cpp -------------------------------------------------------------------------------- /functions/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/Tree.cpp -------------------------------------------------------------------------------- /functions/static/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/static/CMakeLists.txt -------------------------------------------------------------------------------- /functions/static/Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/static/Static.cpp -------------------------------------------------------------------------------- /functions/static/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/static/Static.h -------------------------------------------------------------------------------- /functions/static/TestStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/functions/static/TestStatic.cpp -------------------------------------------------------------------------------- /overloading/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/CMakeLists.txt -------------------------------------------------------------------------------- /overloading/Conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/Conversions.cpp -------------------------------------------------------------------------------- /overloading/TestString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/TestString.cpp -------------------------------------------------------------------------------- /overloading/complex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/complex/CMakeLists.txt -------------------------------------------------------------------------------- /overloading/complex/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/complex/Complex.cpp -------------------------------------------------------------------------------- /overloading/complex/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/complex/Complex.h -------------------------------------------------------------------------------- /overloading/complex/Imaginary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/complex/Imaginary.h -------------------------------------------------------------------------------- /overloading/integer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/integer/CMakeLists.txt -------------------------------------------------------------------------------- /overloading/integer/Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/integer/Integer.cpp -------------------------------------------------------------------------------- /overloading/integer/Integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/overloading/integer/Integer.h -------------------------------------------------------------------------------- /pointers-array-and-references/Aliasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/Aliasing.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/PointerAlignments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/PointerAlignments.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/PointerDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/PointerDiff.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/PrintMonths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/PrintMonths.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/ReadAndPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/ReadAndPrint.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/SizeOfChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/SizeOfChar.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/SwapInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/SwapInt.cpp -------------------------------------------------------------------------------- /pointers-array-and-references/Variuos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/pointers-array-and-references/Variuos.cpp -------------------------------------------------------------------------------- /result/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/result/CMakeLists.txt -------------------------------------------------------------------------------- /result/include/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/result/include/Result.hpp -------------------------------------------------------------------------------- /result/src/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/result/src/Result.cpp -------------------------------------------------------------------------------- /select-operations/Apply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/select-operations/Apply.cpp -------------------------------------------------------------------------------- /select-operations/BadAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/select-operations/BadAlloc.cpp -------------------------------------------------------------------------------- /select-operations/SumElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/select-operations/SumElements.cpp -------------------------------------------------------------------------------- /special-operations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/CMakeLists.txt -------------------------------------------------------------------------------- /special-operations/pointer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/pointer/CMakeLists.txt -------------------------------------------------------------------------------- /special-operations/pointer/Pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/pointer/Pointer.cpp -------------------------------------------------------------------------------- /special-operations/string/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/string/CMakeLists.txt -------------------------------------------------------------------------------- /special-operations/string/Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/string/Iterator.cpp -------------------------------------------------------------------------------- /special-operations/string/Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/string/Iterator.h -------------------------------------------------------------------------------- /special-operations/string/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/special-operations/string/Test.cpp -------------------------------------------------------------------------------- /statements/Atoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/statements/Atoi.cpp -------------------------------------------------------------------------------- /statements/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/statements/Errors.cpp -------------------------------------------------------------------------------- /statements/ForWhile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/statements/ForWhile.cpp -------------------------------------------------------------------------------- /statements/Itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/statements/Itoa.cpp -------------------------------------------------------------------------------- /statements/StripComments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/statements/StripComments.cpp -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Date.cpp -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Month.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Month.cpp -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Month.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Month.h -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Season.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Season.cpp -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Season.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Season.h -------------------------------------------------------------------------------- /structures-unions-and-enumerations/Struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/structures-unions-and-enumerations/Struct.cpp -------------------------------------------------------------------------------- /types-and-declarations/Limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/types-and-declarations/Limits.cpp -------------------------------------------------------------------------------- /types-and-declarations/ListLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/types-and-declarations/ListLoop.cpp -------------------------------------------------------------------------------- /types-and-declarations/PlainCharDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/types-and-declarations/PlainCharDetails.cpp -------------------------------------------------------------------------------- /types-and-declarations/PrintCharInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/types-and-declarations/PrintCharInt.cpp -------------------------------------------------------------------------------- /types-and-declarations/TestSizeOf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/types-and-declarations/TestSizeOf.cpp -------------------------------------------------------------------------------- /utils/Measure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fahien/excpp/HEAD/utils/Measure.hpp --------------------------------------------------------------------------------