Align switch statement with case labels to reduce indentation in EngineDialog
[ardour.git] / libs / appleutility / AUParamInfo.h
index 8e446394c4b189f296164dfec596fbfd5d878546..e20e14b2596f3b23ebf11114a9a1dc44c7c82b0b 100644 (file)
@@ -37,7 +37,7 @@
 */
 /*=============================================================================
        AUParamInfo.h
-       
+
 =============================================================================*/
 #include <map>
 #include <vector>
 #include "CAAUParameter.h"
 
 /*
-       The ParameterMap returned by the Map() method is a map where 
+       The ParameterMap returned by the Map() method is a map where
                - the key is the clumpID
                - the value is a ParameterList (vector<CAAUParameter>)
-               
-       If you have parameters on multiple scopes (or elements within a scope), then you should create one of these 
+
+       If you have parameters on multiple scopes (or elements within a scope), then you should create one of these
        for each scope-element pair
 */
 
@@ -61,45 +61,45 @@ public:
 
 
 
-                                                       AUParamInfo (AudioUnit          inAU, 
-                                                                       bool                            inIncludeExpert, 
-                                                                       bool                            inIncludeReadOnly, 
+                                                       AUParamInfo (AudioUnit          inAU,
+                                                                       bool                            inIncludeExpert,
+                                                                       bool                            inIncludeReadOnly,
                                                                        AudioUnitScope          inScope = kAudioUnitScope_Global,
                                                                        AudioUnitElement        inElement = 0);
-                                                                       
+
                                                        ~AUParamInfo();
-                                                       
+
        const ParameterMap&             Map () const { return mParams; }
-       
+
        // some convenience methods
        UInt32                                  NumParams () const { return mNumParams; }
-       
-       AudioUnitParameterID    ParamID (UInt32 inIndex) const 
-                                                       { 
-                                                               if (inIndex < mNumParams) return mParamListID[inIndex]; 
-                                                               return 0xFFFFFFFF; 
+
+       AudioUnitParameterID    ParamID (UInt32 inIndex) const
+                                                       {
+                                                               if (inIndex < mNumParams) return mParamListID[inIndex];
+                                                               return 0xFFFFFFFF;
                                                        }
-                                                        
+
        UInt32                                  NumClumps () const { return mParams.size(); }
 
        UInt32                                  NumParamsForClump (UInt32 inClump) const;
-       
+
                        // returns NULL if there's no info for the parameter
        const CAAUParameter*    GetParamInfo (AudioUnitParameterID inParamID) const;
-       
+
        AudioUnitScope                  GetScope () const { return mScope; }
        AudioUnitElement                GetElement () const { return mElement; }
-       
+
 private:
 
        AudioUnit                               mAU;
        UInt32                                  mNumParams;
        AudioUnitParameterID *  mParamListID;
-       
+
        ParameterMap                    mParams;
        AudioUnitScope                  mScope;
        AudioUnitElement                mElement;
-               
+
                // disallow
        AUParamInfo () {}
        AUParamInfo (const AUParamInfo &) {}