00001
00002
00003
00004
00005 #include <stdio.h>
00006
00007 #include "gt.h"
00008
00009 #include <sys/ioctl.h>
00010 #include <unistd.h>
00011 #include <fcntl.h>
00012 #include <sys/soundcard.h>
00013
00014 #include <errno.h>
00015 #include <string.h>
00016
00017 #include <stdlib.h>
00018
00019 gt::gt()
00020 {
00021
00022 audio_fd = -1;
00023
00024 }
00025
00026 void gt::Stop(){
00027 }
00028
00029 void gt::Listen(){
00030 }
00031
00032 void gt::read_buffer(){
00033 }
00034
00035 void gt::process_buffer(){
00036 }
00037
00038 gt::~gt()
00039 {}