~ubuntu-branches/ubuntu/hardy/libterralib/hardy

« back to all changes in this revision

Viewing changes to src/terralib/stat/TeSkaterArvore.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-25 22:32:59 UTC
  • Revision ID: james.westby@ubuntu.com-20051125223259-3zubal8ux4ki4fjg
Tags: upstream-3.0.3b2
ImportĀ upstreamĀ versionĀ 3.0.3b2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//---------------------------------------------------------------------------
 
2
#ifndef ArvoreH
 
3
#define ArvoreH
 
4
#include "TeSkaterGrafo.h"
 
5
#include "heap.h"
 
6
 
 
7
class TArvore{
 
8
  private:
 
9
      THeap *Heap;
 
10
      void  Prim(TSkaterGrafo *);
 
11
  public:
 
12
      ~TArvore();
 
13
      void  Monta_Arvore(TSkaterGrafo *);
 
14
 
 
15
};
 
16
 
 
17
//---------------------------------------------------------------------------
 
18
#endif