summaryrefslogtreecommitdiff
path: root/7p18.cpp
blob: fa1c0472f2ede1429350fefd2b1204cfe9b4391c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/*
 *
 * 7.18
 *
 *
 */

int main () {

	// We dont need to expose functions and data members that should only be
	// accessed or used by the public functions.
	// There are some things that the user does not need to know about when using the class.
	return 0;
}