Anatomist module for cortical folds graphs


fgMethod.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2000-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 ANAFOLD_FGRAPH_FGMETHOD_H
13#define ANAFOLD_FGRAPH_FGMETHOD_H
14
15
16#include <anatomist/fusion/fusionFactory.h>
17
18
19namespace anatomist
20{
21
23 class FGraphMethod : public FusionMethod
24 {
25 public:
27 virtual ~FGraphMethod();
28
29 virtual int canFusion( const std::set<AObject *> & );
30 virtual AObject* fusion( const std::vector<AObject *> & );
31 virtual std::string ID() const;
32 virtual std::string generatedObjectType() const;
33 };
34
35}
36
37#endif
38
39
virtual std::string generatedObjectType() const
virtual int canFusion(const std::set< AObject * > &)
virtual std::string ID() const
virtual AObject * fusion(const std::vector< AObject * > &)