1 /* 2 * Copyright (c) Qualcomm Innovation Center, Inc. 3 * All rights reserved. 4 * 5 * This source code is licensed under the BSD-style license found in the 6 * LICENSE file in the root directory of this source tree. 7 */ 8 #pragma once 9 10 #include <string> 11 12 namespace executorch { 13 namespace backends { 14 namespace qnn { 15 // Create Directory 16 void CreateDirectory(const std::string& path); 17 18 } // namespace qnn 19 } // namespace backends 20 } // namespace executorch 21