jaula API Reference
version 1.4.0
|
00001 00002 /* 00003 * jaula.h : JSON Analysis User Library Acronym 00004 * 00005 * Copyright (C) 2007, 2008, 2009 Kombo Morongo <morongo666@gmail.com> 00006 * 00007 * This library is free software; you can redistribute it and/or modify it 00008 * under the terms of the GNU Lesser General Public License as published by 00009 * the Free Software Foundation; either version 2.1 of the License, or (at 00010 * your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, but 00013 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00014 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00015 * License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public License 00018 * along with this library; if not, write to the Free Software Foundation, 00019 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 00020 * 00021 * svn info: 00022 * $Author: morongo $ 00023 * $HeadURL: https://jaula.svn.sourceforge.net/svnroot/jaula/tags/jaula-1.4.0/jaula/jaula.h $ 00024 * $Id: jaula.h 45 2009-01-11 16:17:03Z morongo $ 00025 * $Revision: 45 $ 00026 */ 00027 00028 #ifndef _JAULA_H_ 00029 #define _JAULA_H_ 00030 00438 namespace JAULA 00439 {} 00440 00441 // Exceptions that can be thrown by the library 00442 #include <jaula/jaula_bad_data_type.h> 00443 #include <jaula/jaula_lexan_error.h> 00444 #include <jaula/jaula_name_duplicated.h> 00445 #include <jaula/jaula_no_error.h> 00446 #include <jaula/jaula_syntax_error.h> 00447 00448 // Data containers 00449 #include <jaula/jaula_value_array.h> 00450 #include <jaula/jaula_value_boolean.h> 00451 #include <jaula/jaula_value_null.h> 00452 #include <jaula/jaula_value_number.h> 00453 #include <jaula/jaula_value_number_int.h> 00454 #include <jaula/jaula_value_object.h> 00455 #include <jaula/jaula_value_string.h> 00456 00457 // parsing routines 00458 #include <jaula/jaula_parse.h> 00459 #endif 00460 00461 // EOF $Id: jaula.h 45 2009-01-11 16:17:03Z morongo $