Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
//header for ns2
2
#ifndef NS2_H
3
#define NS2_H
4
5
namespace ns2
6
{
7
void f();
8
9
class Example
10
{
11
public:
12
Example();
13
void f();
14
15
private:
16
int x1;
17
int x2;
18
};
19
}
20
21
#endif
22