SiGraph: sulcal graphs


fgraph.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1998-2003 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_FOLD_FGRAPH_H
13#define SI_FOLD_FGRAPH_H
14
15
16#include <si/graph/cgraph.h>
17
18namespace sigraph
19{
20 class MGraph;
21
24 class FGraph : public CGraph
25 {
26 public:
27 FGraph( const std::string s = "" );
28 virtual ~FGraph();
29
30 virtual void flipHemispheres();
31 };
32
33}
34
35
36#endif
37
38
CGraph(std::string s="")
virtual ~FGraph()
FGraph(const std::string s="")
virtual void flipHemispheres()
Graph modèle (classe abstraite).
Definition mgraph.h:48