mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 21:27:56 -05:00
Move load_bundles to bundles framework
This commit is contained in:
committed by
Allan Odgaard
parent
d89571956d
commit
5bfd29b604
@@ -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>
|
||||
|
||||
@@ -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 */
|
||||
@@ -2,6 +2,7 @@
|
||||
#define BUNDLES_H_Q267K08K
|
||||
|
||||
#include "item.h"
|
||||
#include "load.h"
|
||||
#include "wrappers.h"
|
||||
#include "locations.h"
|
||||
#include "query.h"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "load_bundles.h"
|
||||
#include "load.h"
|
||||
#include <plist/delta.h>
|
||||
#include <regexp/glob.h>
|
||||
#include <text/format.h>
|
||||
10
Frameworks/bundles/src/load.h
Normal file
10
Frameworks/bundles/src/load.h
Normal 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 */
|
||||
Reference in New Issue
Block a user