/**************************************************************************************** * Name: pcmics2 * * Purpose: Demonstrate the use of two microphones to determine the location * of a sound with known characteristcs. * * Role: GUI * * Author: Luke Scharf (lscharf@vt.edu) * ***************************************************************************************/ /************ * Includes ***********/ #include #include #include "sndbuf_smart.h" #include "pcmics2_gui_snd.h" /******** * Main *******/ int main(int argc, char** argv) { //-- Variable Declarations -- gui_snd my_gui(&argc, &argv); //-- Action -- my_gui.go(); //-- Cleanup -- return(EXIT_SUCCESS); }