aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Saifur Rahman Tamim <86656406+sr-tamim@users.noreply.github.com>2024-03-12 00:29:07 +0600
committerLibravatar GitHub <noreply@github.com>2024-03-12 00:29:07 +0600
commit4feab3e955b87dd200128a01124a970f8b2511a9 (patch)
treeaf7358f400e9455a295eb6dc03e8ebf88723f2a1
parent664c1a38bfdabb05bde02238309efa7b6d610c45 (diff)
downloadentropy-calc-4feab3e955b87dd200128a01124a970f8b2511a9.tar.gz
entropy-calc-4feab3e955b87dd200128a01124a970f8b2511a9.zip
Silver.h added to allElements.cpp
-rw-r--r--headers/allElements.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/headers/allElements.cpp b/headers/allElements.cpp
index 7c0e6a2..1576dfd 100644
--- a/headers/allElements.cpp
+++ b/headers/allElements.cpp
@@ -1,5 +1,6 @@
#include<vector>
#include "../elements/water.h"
+#include "../elements/Silver.h"
#include "baseElement.h"
@@ -7,5 +8,6 @@ vector<baseElement*> getAllElements()
{
vector<baseElement*> elements;
elements.push_back(new water());
+ elements.push_back(new Silver());
return elements;
}