]> Creatis software - gdcm.git/blobdiff - src/gdcmCommandManager.h
Fix mistypings
[gdcm.git] / src / gdcmCommandManager.h
index cd7244f8e3ec3adad3585d2a998c136015e65373..6dac018da900d4cbe96945a483d444a52582e733 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmCommandManager.h,v $
   Language:  C++
-  Date:      $Date: 2005/11/28 16:31:22 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2007/08/22 16:14:03 $
+  Version:   $Revision: 1.6 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
                                                                                 
 =========================================================================*/
 
-#ifndef GDCMCOMMANDMANAGER_H
-#define GDCMCOMMANDMANAGER_H
+#ifndef _GDCMCOMMANDMANAGER_H_
+#define _GDCMCOMMANDMANAGER_H_
 
 #include "gdcmRefCounter.h"
 
 #include <map>
 #include <iostream>
 
-namespace gdcm 
+namespace GDCM_NAME_SPACE 
 {
 //-----------------------------------------------------------------------------
 class Command;
-typedef std::pair<const Base *,unsigned int> CommandKey;
+typedef std::pair<const Base *, unsigned int> CommandKey;
 typedef std::map<CommandKey,Command *> CommandHT;
 
 //-----------------------------------------------------------------------------
@@ -44,24 +44,25 @@ class GDCM_EXPORT CommandManager : public Base
 public:
    void Print(std::ostream &os = std::cout, std::string const &indent = "" );
 
-   static void SetCommand(const Base *object,unsigned int type,Command *command);
-   static Command *GetCommand(const Base *object,unsigned int type);
+   static void SetCommand(const Base *object, unsigned int type, Command *command);
+   static Command *GetCommand(const Base *object, unsigned int type);
 
-   static bool ExecuteCommand(Base *object,unsigned int type,std::string text = "");
-   static bool ExecuteCommandConst(const Base *object,unsigned int type,std::string text = "");
+   static bool ExecuteCommand(Base *object, unsigned int type, std::string text = "");
+   static bool ExecuteCommandConst(const Base *object, unsigned int type, std::string text = "");
 
    static const CommandManager *GetInstance();
 
+   ~CommandManager();
+
 protected:
    CommandManager();
-   ~CommandManager();
 
    void InClearCommand(void);
-   void InSetCommand(const Base *object,unsigned int type,Command *command);
-   Command *InGetCommand(const Base *object,unsigned int type);
+   void InSetCommand(const Base *object, unsigned int type, Command *command);
+   Command *InGetCommand(const Base *object, unsigned int type);
 
-   bool InExecuteCommand(Base *object,unsigned int type,std::string text = "");
-   bool InExecuteCommandConst(const Base *object,unsigned int type,std::string text = "");
+   bool InExecuteCommand(Base *object, unsigned int type, std::string text = "");
+   bool InExecuteCommandConst(const Base *object, unsigned int type, std::string text = "");
 
 private:
    static CommandManager Instance;