2011-06-23 14:47:08 +01:00
|
|
|
#include "block.h"
|
2011-07-22 16:09:56 +01:00
|
|
|
#include "metadata.h"
|
2011-06-23 14:47:08 +01:00
|
|
|
|
2011-06-16 08:16:10 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2011-07-22 16:09:56 +01:00
|
|
|
using namespace thinp;
|
|
|
|
|
2011-06-16 08:16:10 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-07-22 16:09:56 +01:00
|
|
|
metadata m("foo.metadata", 128, 1024);
|
2011-06-16 08:16:10 +01:00
|
|
|
return 0;
|
|
|
|
}
|