Bijna klaar!
This commit is contained in:
parent
a30f63ab5a
commit
183827ae9f
42 changed files with 3198 additions and 0 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