Skip to content

Commit

Permalink
Add base classes for video
Browse files Browse the repository at this point in the history
  • Loading branch information
levantAJ committed Oct 17, 2020
1 parent dba0ab6 commit cb91ac5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 4 additions & 0 deletions VideoEditor.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/* Begin PBXBuildFile section */
690FEB77253AF8BF004FCA43 /* VideoEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 690FEB76253AF8BF004FCA43 /* VideoEditor.swift */; };
690FEB7B253AFAE0004FCA43 /* VideoExporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 690FEB7A253AFAE0004FCA43 /* VideoExporter.swift */; };
697BF772253AF3BF00033BE2 /* VideoEditor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 697BF768253AF3BE00033BE2 /* VideoEditor.framework */; };
697BF777253AF3BF00033BE2 /* VideoEditorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 697BF776253AF3BF00033BE2 /* VideoEditorTests.swift */; };
697BF779253AF3BF00033BE2 /* VideoEditor.h in Headers */ = {isa = PBXBuildFile; fileRef = 697BF76B253AF3BE00033BE2 /* VideoEditor.h */; settings = {ATTRIBUTES = (Public, ); }; };
Expand All @@ -25,6 +26,7 @@

/* Begin PBXFileReference section */
690FEB76253AF8BF004FCA43 /* VideoEditor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoEditor.swift; sourceTree = "<group>"; };
690FEB7A253AFAE0004FCA43 /* VideoExporter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoExporter.swift; sourceTree = "<group>"; };
697BF768253AF3BE00033BE2 /* VideoEditor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = VideoEditor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
697BF76B253AF3BE00033BE2 /* VideoEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VideoEditor.h; sourceTree = "<group>"; };
697BF76C253AF3BE00033BE2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
Expand Down Expand Up @@ -76,6 +78,7 @@
697BF76B253AF3BE00033BE2 /* VideoEditor.h */,
697BF76C253AF3BE00033BE2 /* Info.plist */,
690FEB76253AF8BF004FCA43 /* VideoEditor.swift */,
690FEB7A253AFAE0004FCA43 /* VideoExporter.swift */,
);
path = VideoEditor;
sourceTree = "<group>";
Expand Down Expand Up @@ -198,6 +201,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
690FEB7B253AFAE0004FCA43 /* VideoExporter.swift in Sources */,
690FEB77253AF8BF004FCA43 /* VideoEditor.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
6 changes: 2 additions & 4 deletions VideoEditor/VideoEditor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
// Created by Tai Le on 10/17/20.
//

import UIKit

class VideoEditor: NSObject {

final class VideoEditor {
static let shared = VideoEditor()
}
10 changes: 10 additions & 0 deletions VideoEditor/VideoExporter.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//
// VideoExporter.swift
// VideoEditor
//
// Created by Tai Le on 10/17/20.
//

final class VideoExporter {
static let shared = VideoExporter()
}

0 comments on commit cb91ac5

Please sign in to comment.