From ab9579c25f77834b05531aca295f3ad9217c811f Mon Sep 17 00:00:00 2001 From: Michael McLeod Date: Mon, 9 Feb 2026 17:08:50 +0000 Subject: [PATCH] Test git building --- 05libraries/sec01DesigningClasses.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/05libraries/sec01DesigningClasses.md b/05libraries/sec01DesigningClasses.md index 961938943..807927cf4 100644 --- a/05libraries/sec01DesigningClasses.md +++ b/05libraries/sec01DesigningClasses.md @@ -429,7 +429,7 @@ std::unique_ptr DataManagerFactory(std::vector &v) { if(v.size() < 1000) { - return std::make_unique(v); + return std::make_unique(v); } else { @@ -439,7 +439,7 @@ std::unique_ptr DataManagerFactory(std::vector &v) ``` - `AbstractDataManager` is an abstract base class -- `ShortDataManager` and `LargeDataManager` are two concrete classes which inherit from `AbstractDataManager`, and are optimised for dealing with data on different scales. +- `SmallDataManager` and `LargeDataManager` are two concrete classes which inherit from `AbstractDataManager`, and are optimised for dealing with data on different scales. - The factory uses the size of the data being passed in to make a decision about the approach that is going to be taken. The size of the vector is only known at runtime. ## Implementing Multiple Interfaces