/usr/include/shogun/io/SerializableXmlReader00.h is in libshogun-dev 3.2.0-7.3build4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | /*
* 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 3 of the License, or
* (at your option) any later version.
*
* Written (W) 2010 Soeren Sonnenburg
* Copyright (C) 2010 Berlin Institute of Technology
*/
#ifndef __SERIALIZABLE_XML_READER_00_H__
#define __SERIALIZABLE_XML_READER_00_H__
#include <shogun/lib/config.h>
#ifdef HAVE_XML
#include <shogun/io/SerializableXmlFile.h>
namespace shogun
{
#define IGNORE_IN_CLASSLIST
IGNORE_IN_CLASSLIST class SerializableXmlReader00
:public CSerializableFile::TSerializableReader {
CSerializableXmlFile* m_file;
public:
explicit SerializableXmlReader00(CSerializableXmlFile* file);
virtual ~SerializableXmlReader00();
/** @return object name */
virtual const char* get_name() const {
return "SerializableXmlReader00";
}
virtual bool read_scalar_wrapped(
const TSGDataType* type, void* param);
virtual bool read_cont_begin_wrapped(
const TSGDataType* type, index_t* len_read_y,
index_t* len_read_x);
virtual bool read_cont_end_wrapped(
const TSGDataType* type, index_t len_read_y,
index_t len_read_x);
virtual bool read_string_begin_wrapped(
const TSGDataType* type, index_t* length);
virtual bool read_string_end_wrapped(
const TSGDataType* type, index_t length);
virtual bool read_stringentry_begin_wrapped(
const TSGDataType* type, index_t y);
virtual bool read_stringentry_end_wrapped(
const TSGDataType* type, index_t y);
virtual bool read_sparse_begin_wrapped(
const TSGDataType* type, index_t* length);
virtual bool read_sparse_end_wrapped(
const TSGDataType* type, index_t length);
virtual bool read_sparseentry_begin_wrapped(
const TSGDataType* type, SGSparseVectorEntry<char>* first_entry,
index_t* feat_index, index_t y);
virtual bool read_sparseentry_end_wrapped(
const TSGDataType* type, SGSparseVectorEntry<char>* first_entry,
index_t* feat_index, index_t y);
virtual bool read_item_begin_wrapped(
const TSGDataType* type, index_t y, index_t x);
virtual bool read_item_end_wrapped(
const TSGDataType* type, index_t y, index_t x);
virtual bool read_sgserializable_begin_wrapped(
const TSGDataType* type, char* sgserializable_name,
EPrimitiveType* generic);
virtual bool read_sgserializable_end_wrapped(
const TSGDataType* type, const char* sgserializable_name,
EPrimitiveType generic);
virtual bool read_type_begin_wrapped(
const TSGDataType* type, const char* name,
const char* prefix);
virtual bool read_type_end_wrapped(
const TSGDataType* type, const char* name,
const char* prefix);
};
}
#endif /* HAVE_XML */
#endif /* __SERIALIZABLE_XML_READER_00_H__ */
|