Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXJSONString.h
1 /********************************************************************************
2 * *
3 * J S O N S t r i n g I / O *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2018,2022 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXJSONSTRING_H
22 #define FXJSONSTRING_H
23 
24 #ifndef FXJSON_H
25 #include "FXJSON.h"
26 #endif
27 
28 namespace FX {
29 
30 
34 class FXAPI FXJSONString : public FXJSON {
35 private:
36  FXString buffer;
37 private:
38  FXJSONString(const FXJSONString&);
39  FXJSONString &operator=(const FXJSONString&);
40 public:
41 
45  FXJSONString();
46 
50  FXJSONString(const FXString& string,Direction d=Load);
51 
55  FXJSONString(const FXchar* string,FXuval length,Direction d=Load);
56 
60  FXbool open(const FXString& string,Direction d=Load);
61 
65  FXbool open(const FXchar* string,FXuval length,Direction d=Load);
66 
70  const FXString text() const { return buffer; }
71 
75  virtual FXival fill(FXival count);
76 
80  virtual FXival flush(FXival count);
81 
85  FXbool close();
86 
90  virtual ~FXJSONString();
91  };
92 
93 }
94 
95 #endif
The FXJSON serializer loads or saves an FXVariant to a JSON text file.
Definition: FXJSON.h:80
Direction
Definition: FXParseBuffer.h:36
Definition: FX4Splitter.h:28
const FXString text() const
Return string.
Definition: FXJSONString.h:70
Serialize a variant to or from JSON formatted string.
Definition: FXJSONString.h:34
FXString provides essential string manipulation capabilities in FOX.
Definition: FXString.h:42

Copyright © 1997-2022 Jeroen van der Zijp