blob: c522bd129376f9231b2efd161e04bd3011abf38b [file] [log] [blame]
Shuo Chen7c6b4d72014-03-26 15:20:30 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Regents of the University of California.
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef REPO_STORAGE_STORAGE_METHOD_HPP
8#define REPO_STORAGE_STORAGE_METHOD_HPP
9
10namespace repo {
11
12enum StorageMethod {
13 STORAGE_METHOD_SQLITE = 1
14};
15
16} //namespace repo
17
18#endif