added iOS source code
[wl-app.git] / iOS / WolneLektury / Screens / BookDetails / Cells / BookDetailsSeparatorTableViewCell.swift
diff --git a/iOS/WolneLektury/Screens/BookDetails/Cells/BookDetailsSeparatorTableViewCell.swift b/iOS/WolneLektury/Screens/BookDetails/Cells/BookDetailsSeparatorTableViewCell.swift
new file mode 100644 (file)
index 0000000..5715906
--- /dev/null
@@ -0,0 +1,25 @@
+//
+//  BookDetailsSeparatorTableViewCell.swift
+//  WolneLektury
+//
+//  Created by Pawel Dabrowski on 19/06/2018.
+//  Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
+//
+
+import UIKit
+
+class BookDetailsSeparatorTableViewCell: WLTableViewCell {
+
+    class func instance() -> BookDetailsSeparatorTableViewCell{
+        let cell = BookDetailsSeparatorTableViewCell.instance(type: BookDetailsSeparatorTableViewCell.self)
+        return cell
+    }
+    
+    override func awakeFromNib() {
+        super.awakeFromNib()
+    }
+    
+    override func getHeight() -> CGFloat {
+        return 21
+    }
+}