SourceView/IconViewBox.m

/*
 Copyright (C) 2018 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 Custom NSBox subclass for changing mouse down behavior.
 */
 
#import "IconViewBox.h"
 
// Key values for the icon view dictionary.
NSString *KEY_NAME = @"name";
NSString *KEY_ICON = @"icon";
 
@implementation IconViewBox
 
@end