2011-06-23 19:17:08 +05:30
|
|
|
#include "block.h"
|
2011-07-22 20:39:56 +05:30
|
|
|
#include "metadata.h"
|
2011-06-23 19:17:08 +05:30
|
|
|
|
2011-06-16 12:46:10 +05:30
|
|
|
#include <iostream>
|
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
using namespace thinp;
|
|
|
|
|
2011-06-16 12:46:10 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-07-22 20:39:56 +05:30
|
|
|
metadata m("foo.metadata", 128, 1024);
|
2011-06-16 12:46:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|