00001 00012 /* 00013 00014 Copyright (c) 2007, Tim Burrell 00015 Licensed under the Apache License, Version 2.0 (the "License"); 00016 you may not use this file except in compliance with the License. 00017 You may obtain a copy of the License at 00018 00019 http://www.apache.org/licenses/LICENSE-2.0 00020 00021 Unless required by applicable law or agreed to in writing, software 00022 distributed under the License is distributed on an "AS IS" BASIS, 00023 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00024 See the License for the specific language governing permissions and 00025 limitations under the License. 00026 00027 */ 00028 00029 #ifndef __AlsaMixerInterface_h 00030 #define __AlsaMixerInterface_h 00031 00032 #if HAVE_CONFIG_H 00033 #include "config.h" 00034 #endif 00035 00036 #include "AlsaInterface.hpp" 00037 #include <string> 00038 00040 // Namespace 00042 00043 namespace Gizmod { 00044 00046 // Typedefs 00048 00050 // AlsaMixerInterface Class Definition 00052 00057 class AlsaMixerInterface { 00058 public: 00059 // public member variables 00060 00061 // public functions 00062 virtual int signalMixerEvent() = 0; 00063 00064 // construction / deconstruction 00065 AlsaMixerInterface(); 00066 virtual ~AlsaMixerInterface(); 00067 00068 protected: 00069 // protected member variables 00070 00071 private: 00072 // private functions 00073 00074 // private member variables 00075 }; 00076 00078 00079 } // Gizmod namespace 00080 00081 #endif // __AlsaMixerInterface_h