00001 // Copyright (C) 2009-2010 Ferdinand Majerech 00002 // This file is part of MiniINI 00003 // For conditions of distribution and use, see copyright notice in LICENSE.txt 00004 00005 #ifndef LINETOKEN_H_INCLUDED 00006 #define LINETOKEN_H_INCLUDED 00007 00008 namespace miniini_private 00009 { 00010 00012 enum LineToken 00013 { 00015 LT_NAME, 00017 LT_VAL, 00019 LT_HEADER 00020 }; 00021 00022 } 00023 00024 #endif