Move load_bundles to bundles framework

This commit is contained in:
Jacob Bandes-Storch
2013-07-27 01:58:43 -07:00
committed by Allan Odgaard
parent d89571956d
commit 5bfd29b604
5 changed files with 13 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
#import "BundlesManager.h"
#import "load_bundles.h"
#import <bundles/load.h>
#import "InstallBundleItems.h"
#import <OakFoundation/NSDate Additions.h>
#import <OakFoundation/NSString Additions.h>

View File

@@ -1,10 +0,0 @@
#ifndef LOAD_BUNDLES_H_C8BVI372
#define LOAD_BUNDLES_H_C8BVI372
#include <bundles/item.h>
#include <oak/misc.h>
#include <plist/fs_cache.h>
std::pair<std::vector<bundles::item_ptr>, std::map< oak::uuid_t, std::vector<oak::uuid_t>>> create_bundle_index (std::vector<std::string> const& bundlesPaths, plist::cache_t& cache);
#endif /* end of include guard: LOAD_BUNDLES_H_C8BVI372 */

View File

@@ -2,6 +2,7 @@
#define BUNDLES_H_Q267K08K
#include "item.h"
#include "load.h"
#include "wrappers.h"
#include "locations.h"
#include "query.h"

View File

@@ -1,4 +1,4 @@
#include "load_bundles.h"
#include "load.h"
#include <plist/delta.h>
#include <regexp/glob.h>
#include <text/format.h>

View File

@@ -0,0 +1,10 @@
#ifndef LOAD_H_C8BVI372
#define LOAD_H_C8BVI372
#include "item.h"
#include <oak/misc.h>
#include <plist/fs_cache.h>
PUBLIC std::pair<std::vector<bundles::item_ptr>, std::map< oak::uuid_t, std::vector<oak::uuid_t>>> create_bundle_index (std::vector<std::string> const& bundlesPaths, plist::cache_t& cache);
#endif /* end of include guard: LOAD_H_C8BVI372 */