Go to the source code of this file.
|
#define | LOAD(f_load, sg_type) |
|
#define | SAVE(f_write, sg_type) |
|
#define LOAD |
( |
|
f_load, |
|
|
|
sg_type |
|
) |
| |
Value:template<> void CStringFeatures<sg_type>::load(CFile* loader) \
SGString<sg_type>* strs; \
int32_t num_str; \
int32_t max_len; \
loader->f_load(strs, num_str, max_len); \
set_features(strs, num_str, max_len);
\
}
Definition at line 1921 of file StringFeatures.cpp.
#define SAVE |
( |
|
f_write, |
|
|
|
sg_type |
|
) |
| |
Value:template<> void CStringFeatures<sg_type>::save(CFile* writer) \
{ \
if (m_subset_stack->has_subsets()) \
SG_ERROR(
"save() is not possible on subset")
\
writer->f_write(features, num_vectors);
\
}
Definition at line 1950 of file StringFeatures.cpp.