added: bitvis (WIP)

This commit is contained in:
Bob 2012-11-04 21:29:06 +01:00
parent 8eb8117da3
commit 4d4f7c585c
22 changed files with 2060 additions and 4 deletions

View file

@ -16,7 +16,16 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "bitvis.h"
int main (int argc, char *argv[])
{
CBitVis bitvis(argc, argv);
bitvis.Setup();
bitvis.Process();
bitvis.Cleanup();
return 0;
}