Sha256: 5085585bdc8738fdb0e5de74d1661659c4bd240e7c265bc12eacd8d6468b5c3a

Contents?: true

Size: 477 Bytes

Versions: 1

Compression:

Stored size: 477 Bytes

Contents

#
# Capturer Baseclass
#

module VCSRuby
  class Capturer
    def available?
      false
    end

    def name
      raise "NotImplmentedException"
    end

    def load_video
      raise "NotImplmentedException"
    end

    def length
      raise "NotImplmentedException"
    end

    def width
      raise "NotImplmentedException"
    end

    def height
      raise "NotImplmentedException"
    end

    def grab time
      raise "NotImplmentedException"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vcs_ruby-0.8.5 lib/capturer.rb