Browse Source

style change

Bjoern Froehlich 13 years ago
parent
commit
9cd392799c
1 changed files with 16 additions and 16 deletions
  1. 16 16
      baselib/Globals.h

+ 16 - 16
baselib/Globals.h

@@ -1,4 +1,4 @@
-/** 
+/**
 * @file Globals.h
 * @file Globals.h
 * @brief some routines which provide access to global variables
 * @brief some routines which provide access to global variables
 * @author Erik Rodner
 * @author Erik Rodner
@@ -14,22 +14,22 @@ namespace OBJREC {
 
 
 /** @brief some routines which provide access to global variables */
 /** @brief some routines which provide access to global variables */
 class Globals {
 class Globals {
-    
-    private:
+
+  private:
 
 
     /** image filename which is currently processed */
     /** image filename which is currently processed */
     static std::string currentImgFN;
     static std::string currentImgFN;
 
 
-    public:
+  public:
 
 
-	/** cache mode: none "none" (<root>/<imgfn>), categories "cat" (<root>/<last-dir-part>/<imgfn>),
-	    categories_secondpart "cat2" (<root>/<second-last-dir-part>/<imgfn>) */
+    /** cache mode: none "none" (<root>/<imgfn>), categories "cat" (<root>/<last-dir-part>/<imgfn>),
+        categories_secondpart "cat2" (<root>/<second-last-dir-part>/<imgfn>) */
     enum {
     enum {
-		SORT_NONE = 0,
-		SORT_CATEGORIES,
-		SORT_CATEGORIES_SECONDPART
+      SORT_NONE = 0,
+      SORT_CATEGORIES,
+      SORT_CATEGORIES_SECONDPART
     };
     };
-   
+
     /** set filename of the image which is currently processed */
     /** set filename of the image which is currently processed */
     static void setCurrentImgFN ( const std::string & imgfn );
     static void setCurrentImgFN ( const std::string & imgfn );
 
 
@@ -37,15 +37,15 @@ class Globals {
     static std::string getCurrentImgFN ();
     static std::string getCurrentImgFN ();
 
 
     /** get a filename which can be used for caching
     /** get a filename which can be used for caching
-	@param root root directory of the global cache
-	@param cache_mode mode of the caching
-	@return cache filename
+    @param root root directory of the global cache
+    @param cache_mode mode of the caching
+    @return cache filename
     */
     */
     static std::string getCacheFilename ( const std::string & root, int cache_mode );
     static std::string getCacheFilename ( const std::string & root, int cache_mode );
-    
+
     /** get cache mode
     /** get cache mode
-	@param desc description of the cache
-	@return determined cache mode
+    @param desc description of the cache
+    @return determined cache mode
     */
     */
     static int getCacheMode ( const std::string & desc );
     static int getCacheMode ( const std::string & desc );