Binary object storage, misc changes
This commit is contained in:
14
binifyObj.cc
Normal file
14
binifyObj.cc
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <string>
|
||||
|
||||
#include "objectParser.hh"
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
if(argc != 3)
|
||||
return 1;
|
||||
|
||||
auto obj = readObject(argv[1]);
|
||||
writeObjectPB(argv[2], obj);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user