Skip to content

Commit

Permalink
Added Ruby file with empty documentation of native methods
Browse files Browse the repository at this point in the history
  • Loading branch information
wedesoft committed Nov 17, 2010
1 parent ad20239 commit bbc517e
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions lib/hornetseye-alsa/native.rb
@@ -0,0 +1,67 @@
# hornetseye-alsa - Play audio data using libalsa
# Copyright (C) 2010 Jan Wedekind
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# Namespace of Hornetseye computer vision library
module Hornetseye

class AlsaInput

attr_reader :rate

attr_reader :channels

def close
end

def avail
end

def delay
end

def prepare
end

end

class AlsaOutput

attr_reader :rate

attr_reader :channels

def close
end

def drop
end

def drain
end

def avail
end

def delay
end

def prepare
end

end

end

0 comments on commit bbc517e

Please sign in to comment.