~ubuntu-branches/ubuntu/wily/ginkgocadx/wily-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/commands/comandocalibrado.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-05-02 08:09:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110502080926-bql5wep49c7hg91t
Tags: upstream-2.4.1.1
ImportĀ upstreamĀ versionĀ 2.4.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
*  
 
3
*  $Id: comandocalibrado.h 3526 2011-03-16 19:56:19Z carlos $
 
4
*  Ginkgo CADx Project
 
5
*
 
6
*  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
 
7
*  http://ginkgo-cadx.com
 
8
*
 
9
*  This file is licensed under LGPL v3 license.
 
10
*  See License.txt for details
 
11
*
 
12
*/
 
13
#pragma once
 
14
//#define _GINKGO_TRACE
 
15
#include <api/globals.h>
 
16
#include <api/icomando.h>
 
17
#include <api/ientorno.h>
 
18
#include <exception>
 
19
#include "inotificadorcalibrado.h"
 
20
//#include <AVL.h>
 
21
//
 
22
//
 
23
//namespace GNC{
 
24
//      namespace GUI{
 
25
//              struct TPuntoCalibrado;
 
26
//      }
 
27
//}
 
28
//
 
29
//namespace GADAPI {
 
30
//
 
31
//      class CalibradoParamsException : public std::exception {
 
32
//      public:
 
33
//              CalibradoParamsException(std::string& message) throw() {m_message=message;}
 
34
//               ~CalibradoParamsException() throw() {}
 
35
//               std::string GetMensage(){return m_message;}
 
36
//      protected:
 
37
//               std::string m_message;
 
38
//      };
 
39
//
 
40
//
 
41
//      class ComandoCalibradoParams : public IComandoParams {
 
42
//      public:
 
43
//              typedef MEF_ImagenRGBLight TImagenCalibrado;
 
44
//              TImagenCalibrado m_imagen;
 
45
//              double spacing[3];
 
46
//              std::vector<GNC::GUI::TPuntoCalibrado> m_Puntos;
 
47
//              INotificadorCalibrado* m_pNotificador;
 
48
//
 
49
//              ComandoCalibradoParams(vtkImageData* pImagenOriginal,int slice,INotificadorCalibrado* pNotificador) ;
 
50
//
 
51
//              ~ComandoCalibradoParams();
 
52
//
 
53
//      };
 
54
//
 
55
//      class ComandoCalibrado : public IComando {
 
56
//      public:
 
57
//              ComandoCalibrado(ComandoCalibradoParams* pParams);
 
58
//              ~ComandoCalibrado();
 
59
//
 
60
//              void Execute();
 
61
//
 
62
//              void Abort();
 
63
//              void Update();
 
64
//
 
65
//              void SetNotificadorProgreso(GNC::INotificadorProgreso* pNotificador);
 
66
//              void SetNotificadorProgresoAlternativo(GNC::INotificadorProgreso* pNotificador);
 
67
//
 
68
//              void NotificarProgreso(float progresoNormalizado,const std::string &texto);
 
69
//
 
70
//              void LiberarRecursos();
 
71
//
 
72
//      protected:
 
73
//              ComandoCalibradoParams* m_pCalibradoParams;
 
74
//              GNC::INotificadorProgreso* m_pNotificadorProgresoAlternativo;
 
75
//      };
 
76
//}