// Copyright (c) 2017 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef ATOM_BROWSER_UI_COCOA_ATOM_SCRUBBER_DATA_SOURCE_H_ #define ATOM_BROWSER_UI_COCOA_ATOM_SCRUBBER_DATA_SOURCE_H_ #import #include #include #include "native_mate/persistent_dictionary.h" @interface AtomScrubberDataSource : NSObject { @protected std::vector items_; } - (id)initWithItems:(std::vector)items; - (void)setItems:(std::vector)items; @end #endif // ATOM_BROWSER_UI_COCOA_ATOM_SCRUBBER_DATA_SOURCE_H_