00001 /* 00002 jaula_value_null.h : JSON Analysis User Library Acronym 00003 JSON null values definitions 00004 00005 Copyright (C) 2007 Kombo Morongo <morongo666@gmail.com> 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Lesser General Public 00009 License as published by the Free Software Foundation; either 00010 version 2.1 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library; if not, write to the Free Software 00019 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 00020 00021 svn info: 00022 00023 $Author: morongo $ 00024 $HeadURL: https://jaula.svn.sourceforge.net/svnroot/jaula/trunk/jaula/jaula_value_null.h $ 00025 $Id: jaula_value_null.h 2 2007-04-13 19:00:00Z morongo $ 00026 $Revision: 2 $ 00027 */ 00028 00029 #ifndef _JAULA_VALUE_NULL_H_ 00030 #define _JAULA_VALUE_NULL_H_ 00031 00032 #include <jaula/jaula_value.h> 00033 00042 namespace JAULA 00043 { // namespace JAULA 00044 00055 class Value_Null : public Value 00056 { // class Value_Null 00057 public: 00058 00062 Value_Null(void); 00063 00067 virtual ~Value_Null(); 00068 00079 virtual void repr(std::ostream &ostr) const; 00080 00090 virtual void set(Value const &origin) throw(Bad_Data_Type); 00091 00092 }; // class Value_Null 00093 00094 } // namespace JAULA 00095 #endif 00096 00097 // EOF $Id: jaula_value_null.h 2 2007-04-13 19:00:00Z morongo $
Copyright (c) 2007 Kombo Morongo.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License".