diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2017-03-28 11:31:09 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2017-05-21 15:22:54 +0200 |
commit | 19d32648ed4ad04c4cc09fd7ec6b9250b9387893 (patch) | |
tree | cfcf1b5cc465f6a87b3d846865b641758467c5a9 /src/utility | |
parent | 8134e6e23b2787322fa10e65e44d286da82eea91 (diff) |
Replace highlight colors with prefixes and suffixes
Diffstat (limited to 'src/utility')
-rw-r--r-- | src/utility/storage_kind.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/utility/storage_kind.h b/src/utility/storage_kind.h new file mode 100644 index 00000000..70d69cbf --- /dev/null +++ b/src/utility/storage_kind.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * Copyright (C) 2008-2017 by Andrzej Rybczak * + * electricityispower@gmail.com * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#ifndef NCMPCPP_UTILITY_STORAGE_KIND_H +#define NCMPCPP_UTILITY_STORAGE_KIND_H + +enum class StorageKind { Reference, Value }; + +#endif // NCMPCPP_UTILITY_VALUE_TYPE_H |