Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 3

Advanced OO Programming

Session Title

Slide title
Bullet points
Etc
etc

Code fragments
//main.cpp
#include <iostream>
#include "Number.h
using namespace std;
int main()
{
Number myNum = Number();
myNum.setNum(42);
cout << "Number set was: " <<
myNum.getNum();
return 0;
}

You might also like