example.h
Go to the documentation of this file.
1 #ifndef EXAMPLE_H
2 #define EXAMPLE_H
3 
4 /*
5  * example.h
6  * Copyright (c) 2016 Georgetown University. All Rights Reserved.
7  */
8 
9 #include <iostream>
10 #include <vector>
11 
12 using namespace std;
13 
23 class Example : public vector<double>
24 {
25 
34  friend ostream &operator<<( ostream &out, const Example &e );
35 
36  public:
37 
39  Example( int n );
40 
41 }; // Example class
42 
43 #endif
Definition: example.h:23
ostream & operator<<(ostream &out, const Attribute &a)
Definition: attribute.cc:31