SiGraph: sulcal graphs


multigraph.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2004 CEA
3 *
4 * This software and supporting documentation were developed by
5 * CEA/DSV/SHFJ
6 * 4 place du General Leclerc
7 * 91401 Orsay cedex
8 * France
9 *
10 */
11
12#ifndef SI_GRAPH_MULTIGRAPH_H
13#define SI_GRAPH_MULTIGRAPH_H
14
15#include <string>
16#include <vector>
17
18class Graph;
19
20namespace sigraph
21{
22 void concatenateGraphs( const std::vector<Graph*> in, Graph & out,
23 const std::string & subjectatt );
24 void recoverIndividualGraph( const std::vector<Graph*> subjects,
25 Graph & multi,
26 const std::string & vertexatt );
27}
28
29#endif
30
31
void concatenateGraphs(const std::vector< Graph * > in, Graph &out, const std::string &subjectatt)
void recoverIndividualGraph(const std::vector< Graph * > subjects, Graph &multi, const std::string &vertexatt)