ESyS-Particle  2.3
readSnap.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __READSNAP_H
14 #define __READSNAP_H
15 
16 // --- STL incldes ---
17 #include <string>
18 using std::string;
19 
20 // --- Project includes ---
21 #include "graph.h"
22 
23 Graph readSnap(const string&,int,int,int btag=-1);
24 void readSnap(const string&,int,int,Graph&,int btag=-1);
25 
26 Graph readGeo(const string&,int,int,int btag=-1);
27 void readGeo(const string&,int,int,Graph&,int btag=-1);
28 
29 
30 #endif // __READSNAP_H
Graph readSnap(const string &, int, int, int btag=-1)
Definition: readSnap.cpp:92
Graph class, partially based on Sedgewick, "Alg. in C++", progs. 17.1, 17.9 and 17.10.
Definition: graph.h:63
Graph readGeo(const string &, int, int, int btag=-1)
Definition: readSnap.cpp:329