Bijna klaar!
This commit is contained in:
parent
5ca7a72b86
commit
a3fd7a5a43
84 changed files with 879 additions and 969 deletions
13
util/MP4/main.cpp
Normal file
13
util/MP4/main.cpp
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue