mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 10:32:26 +00:00
18 lines
336 B
C
18 lines
336 B
C
//
|
|
// MPDatabaseVersion.h
|
|
// MacPass
|
|
//
|
|
// Created by Nathaniel Madura on 18/04/13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#ifndef MacPass_MPDatabaseVersion_h
|
|
#define MacPass_MPDatabaseVersion_h
|
|
|
|
typedef NS_ENUM(NSUInteger, MPDatabaseVersion) {
|
|
MPDatabaseVersion3,
|
|
MPDatabaseVersion4
|
|
};
|
|
|
|
#endif
|