-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
24 lines (19 loc) · 832 Bytes
/
main.cpp
File metadata and controls
24 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ©2013 Sqeaky
// This is distibuted under the WTFPL, see COPYING.md for details.
// This is used for a series of experiments on inheritance, polymorphism, casting and the kind of stuff that makes other programmers cringe.
// If you learn anything from this file either never apply it, apply it only in code you will maintain forever, or if you must apply it only
// in a library others with have to see it only infrequently and encapsulated away from the code they might write. Or of course use it to
// intentionally torment others. ;)
#include "vehicletree.h"
#include "diamond.h"
#include "dumbpointer.h"
#include "nestedclasses.h"
#include "missiles.h"
int main()
{
TemplatesAndInferredCasting();
//NestedClassSize();
DiamondTesting();
OpenGasCapToFireMissiles();
return 0;
}