22 lines
577 B
C++
22 lines
577 B
C++
// Copyright 2017 Google Inc. All Rights Reserved
|
|
|
|
/*********************************************************************
|
|
* level3_file_system_factory.h
|
|
*
|
|
* Creates a single OEMCrypto_Level3FileSystem.
|
|
*********************************************************************/
|
|
|
|
#ifndef LEVEL3_FILE_SYSTEM_FACTORY_H_
|
|
#define LEVEL3_FILE_SYSTEM_FACTORY_H_
|
|
|
|
#include "level3_file_system.h"
|
|
|
|
namespace wvoec3 {
|
|
|
|
OEMCrypto_Level3FileSystem* createLevel3FileSystem();
|
|
|
|
void deleteLevel3FileSystem(OEMCrypto_Level3FileSystem* file_system);
|
|
|
|
}
|
|
|
|
#endif // LEVEL3_FILE_SYSTEM_FACTORY_H_
|