mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
24 lines
503 B
Objective-C
24 lines
503 B
Objective-C
//
|
|
// DOMSelectionCacheRecord.m
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 1/11/12.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import "DOMSelectionCacheRecord.h"
|
|
|
|
@implementation DOMSelectionCacheRecord
|
|
|
|
//==================================================================================
|
|
// dealloc
|
|
//==================================================================================
|
|
|
|
- (void)dealloc
|
|
{
|
|
self.parentElement = NULL;
|
|
self.controlParentElement = NULL;
|
|
}
|
|
|
|
@end
|