main.cpp
#include "matlib.h"
#include "geometry.h"
#include "textfunctions.h"
#include "CallOption.h"
#include "PutOption.h"
#include "PieChart.h"
#include "LineChart.h"
#include "BlackScholesModel.h"
#include "Histogram.h"
#include "MonteCarloPricer.h"
#include "UpAndOutOption.h"
#include "DownAndOutOption.h"
#include "pointersolutions.h"
using namespace std;
int main() {
testPointerSolutions();
testMatlib();
testGeometry();
testPieChart();
testCallOption();
testPutOption();
testBlackScholesModel();
testLineChart();
testTextFunctions();
testHistogram();
testMonteCarloPricer();
testUpAndOutOption();
testDownAndOutOption();
testContinuousTimeOptionBase();
return 0;
}