Bijna klaar!

This commit is contained in:
Thulinma 2011-02-16 21:42:40 +01:00
parent 5ca7a72b86
commit a3fd7a5a43
84 changed files with 879 additions and 969 deletions

13
util/MP4/main.cpp Normal file
View file

@ -0,0 +1,13 @@
#include <iostream>
#include "interface.h"
int main( ) {
std::cout << "Creating Interface\n";
Interface * file = new Interface();
std::cout << "Interface created, start linking them\n";
file->link();
std::cout << "Linking finished, deleting boxes\n";
delete file;
std::cout << "Interface deleted\n";
return 0;
}