1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (c) 2009 The Regents of the University of California
4 //
5 // This file is part of Qbox
6 //
7 // Qbox is distributed under the terms of the GNU General Public License
8 // as published by the Free Software Foundation, either version 2 of
9 // the License, or (at your option) any later version.
10 // See the file COPYING in the root directory of this distribution
11 // or <http://www.gnu.org/licenses/>.
12 //
13 ////////////////////////////////////////////////////////////////////////////////
14 //
15 // ExtForce.cpp
16 //
17 ////////////////////////////////////////////////////////////////////////////////
18 
19 #include "ExtForce.h"
20 #include <iostream>
21 using namespace std;
22 
operator <<(ostream & os,ExtForce & x)23 ostream& operator << ( ostream &os, ExtForce &x )
24 {
25   return x.print(os);
26 }
27 
28